3D Manufacturing Format

From Wikipedia, the free encyclopedia
3D Manufacturing Format
3D Manufacturing Format Logo.png
Filename extension
.3mf
Internet media typeapplication/vnd.ms-package.3dmanufacturing-3dmodel+xml, application/vnd.ms-printing.printticket+xml, model/3mf
Developed by3MF Consortium
Initial release29 April 2015; 6 years ago (2015-04-29)
Latest release
1.2.3
16 August 2018; 3 years ago (2018-08-16)
Container for3D printing data
Contained byOpen Packaging Conventions
Extended fromZIP, XML
Open format?Yes
Website3MF Specification

3D Manufacturing Format or 3MF is an open source file format standard developed and published by the 3MF Consortium.[1][2]

3MF is an XML-based data format designed specifically for additive manufacturing. It includes information about materials, colors, and other information that cannot be represented in the STL format.[3][4] 3MF is not intended to compete in the traditional CAD space which are represented by neutral formats.[5]

Today, CAD software related companies such as Autodesk, Dassault Systèmes, PTC, and Netfabb are part of the 3MF Consortium. Other firms in the 3MF Consortium are Microsoft (for operating system and 3D modeling support), SLM and HP, whilst Shapeways are also included to give insight from a 3D printing background.[6] Other key players in the 3D printing and additive manufacturing business, such as Materialise, 3D Systems, Siemens PLM Software and Stratasys have recently joined the consortium.[7] To facilitate the adoption, 3MF Consortium has also published a C++ implementation of the 3MF file format.[8]

Features[]

Below are a list of some of the advantages of the 3MF format, supplied by the consortium.[9]

  • Full color and texture support in a single file
  • Support structures attached to part data
  • Full tray support for direct machine preparation
  • Thumbnails, viewing, and printing in Microsoft Windows
  • Efficient storage of beam lattices
  • Multiple material support
  • Designed for industrial manufacturing
  • Native integration in Microsoft Office and Paint 3D

Sample file[]

Below is the 3D payload for a simple 3MF file describing a rectangular cuboid, adapted from the 3MF Core specification. The rectangular cuboid has the dimensions of a 1-2-3 block.

<?xml version="1.0" encoding="UTF-8"?>
<model unit="inch"
       xml:lang="en-US"
       xmlns="http://schemas.microsoft.com/3dmanufacturing/core/2015/02">
	<metadata name="Copyright">
		Copyright (c) 2015 3MF Consortium. All rights reserved.
	</metadata>
	<resources>
		<object id="1" type="model">
			<mesh>
				<vertices>
		          		<vertex x="0" y="0" z="0" />
		          		<vertex x="1" y="0" z="0" />
		          		<vertex x="1" y="2" z="0" />
		          		<vertex x="0" y="2" z="0" />
		     			<vertex x="0" y="0" z="3" />
		          		<vertex x="1" y="0" z="3" />
		          		<vertex x="1" y="2" z="3" />
		          		<vertex x="0" y="2" z="3" />
				</vertices>
				<triangles>
		          		<triangle v1="3" v2="2" v3="1" />
		          		<triangle v1="1" v2="0" v3="3" />
		          		<triangle v1="4" v2="5" v3="6" />
		          		<triangle v1="6" v2="7" v3="4" />
		          		<triangle v1="0" v2="1" v3="5" />
		          		<triangle v1="5" v2="4" v3="0" />
		          		<triangle v1="1" v2="2" v3="6" />
		          		<triangle v1="6" v2="5" v3="1" />
		          		<triangle v1="2" v2="3" v3="7" />
		          		<triangle v1="7" v2="6" v3="2" />
		          		<triangle v1="3" v2="0" v3="4" />
		          		<triangle v1="4" v2="7" v3="3" />
				</triangles>
			</mesh>
		</object>
	</resources>
	<build>
		<item objectid="1" />
	</build>
</model>

See also[]

References[]

  1. ^ "3MF Website". 3MF. Retrieved 1 May 2015.
  2. ^ https://www.3printr.com/3mf-consortium-releases-new-3d-printing-file-format-5228822/
  3. ^ "What is 3MF?"
  4. ^ https://www.forbes.com/sites/tjmccue/2015/05/28/microsoft-spearheads-3d-printing-file-format-introducing-the-3mf/#3a4815e8493b
  5. ^ "3MF About Us". 3MF. Archived from the original on 2019-10-10. Retrieved 10 July 2020.
  6. ^ "3MF Consortium Launches to Advance 3D Printing Technology". Business Wire. Retrieved 1 May 2015.
  7. ^ "As of September 2020, 3MF Consortium have signed new members such as 3D Systems, Materialise, Siemens PLM Software, Stratasys among 31 others"
  8. ^ https://github.com/3MFConsortium/lib3mf
  9. ^ https://github.com/3MFConsortium/spec_core/releases/download/1.2.3/3MF_Core_Specification_v1_2_3.pdf[bare URL PDF]
Retrieved from ""