write3mf

버전 1.2 (4.77 KB) 작성자: Claudio
Writes 3mf 3D file from vertices, faces and optionally colours
다운로드 수: 196
업데이트 날짜: 2022/3/23

write3mf

WRITE3MF: Writes 3mf file from vertices, faces and optionally colors.
3mf file is the "3D Manufacturing Format" of file that will allow design applications to send full-fidelity 3D models to a mix of other applications, platforms, services and printers. Full description and specifications can be found here: https://3mf.io/
I wrote this function because 3mf files can be imported in Powerpoint 365 ProPlus 2016 as 3D objects which can be manipulated live!

This function creates a simple 3mf file structure, embedding the vertices, faces and colors provided.

Syntax: write3mf(filename , vertices , faces, colors)

Inputs:

  filename - output 3mf file  
  vertices - list of unique vertices, Nx3 coordinates  
  faces    - connection matrix, Mx3 triangular mesh  
  colors   - (optional) RGB color for each vertex, Nx3 values (between 0 and 1 OR  
             between 0 and 255)  

Demo mode:

write3mf(filename , 'demo') will create a demo 3mf file

Example:

vertices = [0 0 0; 10 0 10; 10 10 0; 0 10 10];  
faces    = [1 3 4; 2 3 4; 1 2 4; 1 4 3;];  
write3mf('D:\temp\pyramid_vertexcolor.3mf' , vertices , faces)

인용 양식

Claudio (2024). write3mf (https://github.com/cvergari/write3mf/releases/tag/V1.2), GitHub. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2016b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Language Fundamentals에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

GitHub 디폴트 브랜치를 사용하는 버전은 다운로드할 수 없음

버전 게시됨 릴리스 정보
1.2

See release notes for this release on GitHub: https://github.com/cvergari/write3mf/releases/tag/V1.2

1.1

See release notes for this release on GitHub: https://github.com/cvergari/write3mf/releases/tag/V1.1

1.0.0.0

Added image to function description in File Exchange

이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.
이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.