SlideShare a Scribd company logo
Contents
 Introduction
 STL file format
 Advantages and limitations of STL file formats
 New AM file formats
 AMF file format
 Conclusion
 References
Introduction
 A 3D printer file is a way to store information about 3D model.
 All 3D printer files contain the data about the shape of 3D model, their
geometry.
 The 3D printer file formats and tools are tightly coupled.
 There are several file formats that can hold such data. Examples include
STL, OBJ, 3MF, VRML etc.
 STL is the most commonly used 3D printer file format across the globe.
STL file format
 The first 3D printer was invented
by Chuck Hull in 1987 at 3D
Systems. The same guy was
behind the STL file format.
 It is a file type created for rapid
prototyping by 3D Systems.
 It was very quickly and easily
adapted by all the 3D modeling
software, slicers, and 3D
printers.
 It stands for STereoLithography
or Standard Triangle Language
or Standard Tessellation
Source - https://all3dp.com/what-is-stl-file-format-
extension-3d-printing/#pointten
How does the STL file format store a 3D
model?
 Tessellation is the process of tiling a surface with one or more geometric
shapes.
 Exploiting tessellation to encode surface geometry : store information about
the facets in a file.
Tessellation Paintings Tessellation of cube and sphere
Source - https://all3dp.com/what-is-stl-file-format-extension-3d-printing/#pointten
How does an STL file store information about
facets?
 ASCII encoding
 Binary encoding
In both formats, the following
information of each triangle is
stored:
I. The coordinates of the vertices.
II. The components of the unit
normal vector to the triangle.
Source - https://i.all3dp.com/wp-
content/uploads/2016/11/27015532/vertices-
and-normal.gif
Continued…
 The ASCII STL file format
The file continues with information about the covering triangles.
solid <name>
facet normal nx ny nz
outer loop
vertex v1x v1y v1z
vertex v2x v2y v2z
vertex v3x v3y v3z
Endloop
endfacet
endsolid <name>
—The ASCII STL file starts with the mandatory
line
—n is the normal to the triangle and v1, v2
and v3 are the vertices of the triangle. Co-
ordinate values are represented as a floating
point number with sign-mantissa-e-sign-
exponent format, e.g., “3.245000e-002”.
—The file ends with the mandatory line
Continued…
 The binary STL file format
If the tessellation involves many small triangles, the ASCII STL file can
become huge. This is why a more compact binary version exists.
UINT8[80] – Header
UINT32 – Number of triangles
foreach triangle
REAL32[3] – Normal vector
REAL32[3] – Vertex 1
REAL32[3] – Vertex 2
REAL32[3] – Vertex 3
UINT16 – Attribute byte count
end
 The binary STL file starts with a 80
character header.
 Each triangle is represented by twelve 32-
bit floating point numbers.
 Just like the ASCII STL file, 3 numbers are
for the 3D Cartesian co-ordinates of the
normal to the triangle.
 The remaining 9 numbers are for the
coordinates of the vertices (three each).
Special rules for the STL format
 The vertex rule
The vertex rule states that each triangle
must share two vertices with its
neighboring triangles.
 The orientation rule
The orientation rule says that the
orientation of the facet must be specified
in two ways. Source - https://all3dp.com/what-is-stl-file-format-
extension-3d-printing/#pointten
How is an STL file 3D printed?
 For 3D printing, the STL file has to
be opened in a dedicated slicer like
Cura or Simplify3D.
 The slicer chops up STL file into
hundreds (or thousands) of flat
horizontal layers.
 All of this information is then
bundled up into a GCode file.
 Slicer settings do have an impact
the quality of print.
 The next stage is for those separate
two-dimensional layers to be
reassembled as a three-dimensional
Source - https://i.all3dp.com/wp-
content/uploads/2016/02/27113945/Best-3D-printing-
software-for-beginners-Cura.png
Optimizing an STL file for best 3D printing
performance
 The 3D printer will print the object with the same coarseness as specified by
the STL file.
 As the size of the triangle decreases, the number of triangles needed to
cover the surface also increases which leads to gigantic file size.
 It is therefore very important to find the right balance between file size and
print quality.
Source - https://i.all3dp.com/wp-
content/uploads/2016/11/27020134/increasin
g-resolution.png
Continued…
 Let’s dig into the most important settings and find out their optimum values.
Chordal height or tolerance
Source - https://i.all3dp.com/wp-
content/uploads/2016/11/27020138/chord-height.png
Angular deviation or angular tolerance
Source - https://i.all3dp.com/wp-
content/uploads/2016/11/27020137/angular-
tolerance.png
0.01-0.001 mm
STL file format : Advantages
 Simple and old 3D printer file format.
 Flexibility more facets for better resolution.
 Easy to handle and transfer.
 de facto standard for 3D printing.
STL file format : Disadvantages
 STL 3D printer file format stores a lot of redundant information.
Table for ~63,000 triangular facets
 Slow and error-prone.
 Incapable of storing color, material and texture information.
3D file
format
s
PLY
(binary
)
PLY
(ASCII)
OBJ
(ASCII)
VRML
(ASCII)
STL
(binary
)
STL
(ASCII)
Size(M
b)
1.1 2 2 2.7 3 11
New file formats
 OBJ file format
 AMF file format
 3MF file format
 VRML file format
AMF file format (.AMF)
 The AMF (STL 2.0) 3D printer file format was
developed by ASTM/ISO in 2011 as a
replacement for the STL file format.
 The aim was to address many of the
shortcomings of the STL 3D printer file
formats.
 AMF addresses the issues in STL by using an
XML format with a hierarchy of five elements
viz. object, material, texture, constellation, and
metadata.
 As of today, Solidworks and the Autodesk suite
supports it.
 Among Slicers, Cura has support for AMF.
Source - https://i.all3dp.com/wp-
content/uploads/2017/10/26234325/AM
F-Logo.png
AMF 3D printer file format features
 It allows curved triangles in addition to
planar straight triangles – and it makes all
the difference.
 It has support for all the modern
requirements of 3D printing like RGBA
colors, sub-structures, microstructures,
porous materials.
Source - https://i.all3dp.com/wp-
content/uploads/2017/10/26234321/Curved
_triangle.png
Source - https://i.all3dp.com/wp-
content/uploads/2017/10/26234317/dual_material.jpg
Continued…
 The “constellation” feature allows
multiple objects to be arranged within
the file, specifying their location and
orientation.
Source - https://i.all3dp.com/wp-
content/uploads/2017/10/26234309/multiple_object_
same_model.jpeg
Basic file structure
 Within the AMF brackets, there are five top level elements
<amf>
<object>
<material>
<texture>
<constellation>
<metadata>
</amf>
How to write the AMF file format ?
Source -
https://www.nist.gov/sites/default/files/documents/2017/04/28/Lip
son-Cornell-NIST-AMF.pdf
Continued…
Source -
https://www.nist.gov/sites/default/files/documents/2017/0
4/28/Lipson-Cornell-NIST-AMF.pdf
Continued…
Source -
https://www.nist.gov/sites/default/files/document
s/2017/04/28/Lipson-Cornell-NIST-AMF.pdf
Comparision between STL and AMF file
formats
Source -
https://www.nist.gov/sites/default/files/documents/2017/04/28/Lipson-
Cornell-NIST-AMF.pdf
Conclusion
 At this point of time, STL, OBJ, AMF, and 3MF seem to be the most
important 3D printer file formats.
 They all have their own strengths, weaknesses and have varying levels of
compatibility with 3D printing software and hardware.
 It is imperative to know and understand the key differences between these
formats.
Toolchain
Production efficiency
The quality of prints.
References
 Sculpteo (https://www.sculpteo.com/blog/2018/10/17/top-4-of-the-best-3d-
printer-file-formats/)
 All3dp (https://all3dp.com/3d-printing-file-formats/)
 NIH 3DP Print Exchange (https://3dprint.nih.gov/faqs/1781)
 Wikipedia (https://en.wikipedia.org/wiki/3D_Manufacturing_Format)
 Lipson-Cornell-NIST-AMF
(https://www.nist.gov/sites/default/files/documents/2017/04/28/Lipson-
Cornell-NIST-AMF.pdf)
Thank You !!

More Related Content

PPTX
STL Format: 3D Printing & Modeling Standard"
PPTX
Lecture # 04 Materials for AM Processes
PDF
Experimental Validation of 3-D Printed Bolts
PDF
Enhanced slicing algorithm
PPTX
Exporting to stl
PPT
Rapid prototyping and tooling
PDF
Additive Manufacturing_18me741 - Mamatha K M Module 4.pdf
PPTX
Presentation1.pptx
STL Format: 3D Printing & Modeling Standard"
Lecture # 04 Materials for AM Processes
Experimental Validation of 3-D Printed Bolts
Enhanced slicing algorithm
Exporting to stl
Rapid prototyping and tooling
Additive Manufacturing_18me741 - Mamatha K M Module 4.pdf
Presentation1.pptx

Similar to AM file formats.pdf (20)

PDF
3D PRINTING/ PDF/EXICTING INFORMATION
PDF
3D PRINTING: THE FUTURE OF TECHNOLOGY
PPT
Introduction to 3D Printing with rapid prototyping
PPTX
Week 11 - Optimisation and Output
PDF
report on stereoithographty
PDF
3d printer manual
PDF
3 d cad cam and rapid prototypingv1.1 2
PDF
3D PRINTING TECHNOLOGY
PPTX
Ziggzagg what we do and how we work
PDF
74289607 solids-surpac
PDF
[2014년 7월 8일] 3 d 프린터
PPTX
1summery
PPSX
3 d printing slide
PPTX
DIP.pptx
PDF
3dp-pres-pdf.pdf
PPSX
3D Printing Technology
PPT
cprogrammingdatatypesand differentdtatypes (1).ppt
PPT
cprogrammingdata_type in with explanation.ppt
PPT
cprogrammingdatatype using clangauge(1).ppt
3D PRINTING/ PDF/EXICTING INFORMATION
3D PRINTING: THE FUTURE OF TECHNOLOGY
Introduction to 3D Printing with rapid prototyping
Week 11 - Optimisation and Output
report on stereoithographty
3d printer manual
3 d cad cam and rapid prototypingv1.1 2
3D PRINTING TECHNOLOGY
Ziggzagg what we do and how we work
74289607 solids-surpac
[2014년 7월 8일] 3 d 프린터
1summery
3 d printing slide
DIP.pptx
3dp-pres-pdf.pdf
3D Printing Technology
cprogrammingdatatypesand differentdtatypes (1).ppt
cprogrammingdata_type in with explanation.ppt
cprogrammingdatatype using clangauge(1).ppt
Ad

More from PraveenVundrajavarap (9)

PPTX
Measurements and Metrology lathe alignment.pptx
PPTX
Project management unit 3 unit slides.pptx
PPTX
Additive manufacturing introduction.pptx
PPT
computer aided process planning, approaches to capp, variant and generaive type
PPTX
FMS IN CAD/CAM TYPES HISTORY ADVANTAGES PPT_final.pptx
PPTX
Metrology instrumentation measurements.pptx
PPTX
Unit II.pptx
PPT
Deep-Learning-Convolutional Neural Networks and Sequence Modeling.ppt
PDF
project managementUnit 1.pdf
Measurements and Metrology lathe alignment.pptx
Project management unit 3 unit slides.pptx
Additive manufacturing introduction.pptx
computer aided process planning, approaches to capp, variant and generaive type
FMS IN CAD/CAM TYPES HISTORY ADVANTAGES PPT_final.pptx
Metrology instrumentation measurements.pptx
Unit II.pptx
Deep-Learning-Convolutional Neural Networks and Sequence Modeling.ppt
project managementUnit 1.pdf
Ad

Recently uploaded (20)

PPTX
Construction Project Organization Group 2.pptx
PPTX
Sustainable Sites - Green Building Construction
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
Internet of Things (IOT) - A guide to understanding
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PPTX
Artificial Intelligence
PPTX
CH1 Production IntroductoryConcepts.pptx
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
additive manufacturing of ss316l using mig welding
PPTX
OOP with Java - Java Introduction (Basics)
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PPT
Project quality management in manufacturing
PPTX
Lecture Notes Electrical Wiring System Components
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PDF
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
PDF
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
Construction Project Organization Group 2.pptx
Sustainable Sites - Green Building Construction
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
Internet of Things (IOT) - A guide to understanding
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
Artificial Intelligence
CH1 Production IntroductoryConcepts.pptx
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
Operating System & Kernel Study Guide-1 - converted.pdf
bas. eng. economics group 4 presentation 1.pptx
additive manufacturing of ss316l using mig welding
OOP with Java - Java Introduction (Basics)
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
Project quality management in manufacturing
Lecture Notes Electrical Wiring System Components
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
Automation-in-Manufacturing-Chapter-Introduction.pdf
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
UNIT-1 - COAL BASED THERMAL POWER PLANTS

AM file formats.pdf

  • 1. Contents  Introduction  STL file format  Advantages and limitations of STL file formats  New AM file formats  AMF file format  Conclusion  References
  • 2. Introduction  A 3D printer file is a way to store information about 3D model.  All 3D printer files contain the data about the shape of 3D model, their geometry.  The 3D printer file formats and tools are tightly coupled.  There are several file formats that can hold such data. Examples include STL, OBJ, 3MF, VRML etc.  STL is the most commonly used 3D printer file format across the globe.
  • 3. STL file format  The first 3D printer was invented by Chuck Hull in 1987 at 3D Systems. The same guy was behind the STL file format.  It is a file type created for rapid prototyping by 3D Systems.  It was very quickly and easily adapted by all the 3D modeling software, slicers, and 3D printers.  It stands for STereoLithography or Standard Triangle Language or Standard Tessellation Source - https://all3dp.com/what-is-stl-file-format- extension-3d-printing/#pointten
  • 4. How does the STL file format store a 3D model?  Tessellation is the process of tiling a surface with one or more geometric shapes.  Exploiting tessellation to encode surface geometry : store information about the facets in a file. Tessellation Paintings Tessellation of cube and sphere Source - https://all3dp.com/what-is-stl-file-format-extension-3d-printing/#pointten
  • 5. How does an STL file store information about facets?  ASCII encoding  Binary encoding In both formats, the following information of each triangle is stored: I. The coordinates of the vertices. II. The components of the unit normal vector to the triangle. Source - https://i.all3dp.com/wp- content/uploads/2016/11/27015532/vertices- and-normal.gif
  • 6. Continued…  The ASCII STL file format The file continues with information about the covering triangles. solid <name> facet normal nx ny nz outer loop vertex v1x v1y v1z vertex v2x v2y v2z vertex v3x v3y v3z Endloop endfacet endsolid <name> —The ASCII STL file starts with the mandatory line —n is the normal to the triangle and v1, v2 and v3 are the vertices of the triangle. Co- ordinate values are represented as a floating point number with sign-mantissa-e-sign- exponent format, e.g., “3.245000e-002”. —The file ends with the mandatory line
  • 7. Continued…  The binary STL file format If the tessellation involves many small triangles, the ASCII STL file can become huge. This is why a more compact binary version exists. UINT8[80] – Header UINT32 – Number of triangles foreach triangle REAL32[3] – Normal vector REAL32[3] – Vertex 1 REAL32[3] – Vertex 2 REAL32[3] – Vertex 3 UINT16 – Attribute byte count end  The binary STL file starts with a 80 character header.  Each triangle is represented by twelve 32- bit floating point numbers.  Just like the ASCII STL file, 3 numbers are for the 3D Cartesian co-ordinates of the normal to the triangle.  The remaining 9 numbers are for the coordinates of the vertices (three each).
  • 8. Special rules for the STL format  The vertex rule The vertex rule states that each triangle must share two vertices with its neighboring triangles.  The orientation rule The orientation rule says that the orientation of the facet must be specified in two ways. Source - https://all3dp.com/what-is-stl-file-format- extension-3d-printing/#pointten
  • 9. How is an STL file 3D printed?  For 3D printing, the STL file has to be opened in a dedicated slicer like Cura or Simplify3D.  The slicer chops up STL file into hundreds (or thousands) of flat horizontal layers.  All of this information is then bundled up into a GCode file.  Slicer settings do have an impact the quality of print.  The next stage is for those separate two-dimensional layers to be reassembled as a three-dimensional Source - https://i.all3dp.com/wp- content/uploads/2016/02/27113945/Best-3D-printing- software-for-beginners-Cura.png
  • 10. Optimizing an STL file for best 3D printing performance  The 3D printer will print the object with the same coarseness as specified by the STL file.  As the size of the triangle decreases, the number of triangles needed to cover the surface also increases which leads to gigantic file size.  It is therefore very important to find the right balance between file size and print quality. Source - https://i.all3dp.com/wp- content/uploads/2016/11/27020134/increasin g-resolution.png
  • 11. Continued…  Let’s dig into the most important settings and find out their optimum values. Chordal height or tolerance Source - https://i.all3dp.com/wp- content/uploads/2016/11/27020138/chord-height.png Angular deviation or angular tolerance Source - https://i.all3dp.com/wp- content/uploads/2016/11/27020137/angular- tolerance.png 0.01-0.001 mm
  • 12. STL file format : Advantages  Simple and old 3D printer file format.  Flexibility more facets for better resolution.  Easy to handle and transfer.  de facto standard for 3D printing.
  • 13. STL file format : Disadvantages  STL 3D printer file format stores a lot of redundant information. Table for ~63,000 triangular facets  Slow and error-prone.  Incapable of storing color, material and texture information. 3D file format s PLY (binary ) PLY (ASCII) OBJ (ASCII) VRML (ASCII) STL (binary ) STL (ASCII) Size(M b) 1.1 2 2 2.7 3 11
  • 14. New file formats  OBJ file format  AMF file format  3MF file format  VRML file format
  • 15. AMF file format (.AMF)  The AMF (STL 2.0) 3D printer file format was developed by ASTM/ISO in 2011 as a replacement for the STL file format.  The aim was to address many of the shortcomings of the STL 3D printer file formats.  AMF addresses the issues in STL by using an XML format with a hierarchy of five elements viz. object, material, texture, constellation, and metadata.  As of today, Solidworks and the Autodesk suite supports it.  Among Slicers, Cura has support for AMF. Source - https://i.all3dp.com/wp- content/uploads/2017/10/26234325/AM F-Logo.png
  • 16. AMF 3D printer file format features  It allows curved triangles in addition to planar straight triangles – and it makes all the difference.  It has support for all the modern requirements of 3D printing like RGBA colors, sub-structures, microstructures, porous materials. Source - https://i.all3dp.com/wp- content/uploads/2017/10/26234321/Curved _triangle.png Source - https://i.all3dp.com/wp- content/uploads/2017/10/26234317/dual_material.jpg
  • 17. Continued…  The “constellation” feature allows multiple objects to be arranged within the file, specifying their location and orientation. Source - https://i.all3dp.com/wp- content/uploads/2017/10/26234309/multiple_object_ same_model.jpeg
  • 18. Basic file structure  Within the AMF brackets, there are five top level elements <amf> <object> <material> <texture> <constellation> <metadata> </amf>
  • 19. How to write the AMF file format ? Source - https://www.nist.gov/sites/default/files/documents/2017/04/28/Lip son-Cornell-NIST-AMF.pdf
  • 22. Comparision between STL and AMF file formats Source - https://www.nist.gov/sites/default/files/documents/2017/04/28/Lipson- Cornell-NIST-AMF.pdf
  • 23. Conclusion  At this point of time, STL, OBJ, AMF, and 3MF seem to be the most important 3D printer file formats.  They all have their own strengths, weaknesses and have varying levels of compatibility with 3D printing software and hardware.  It is imperative to know and understand the key differences between these formats. Toolchain Production efficiency The quality of prints.
  • 24. References  Sculpteo (https://www.sculpteo.com/blog/2018/10/17/top-4-of-the-best-3d- printer-file-formats/)  All3dp (https://all3dp.com/3d-printing-file-formats/)  NIH 3DP Print Exchange (https://3dprint.nih.gov/faqs/1781)  Wikipedia (https://en.wikipedia.org/wiki/3D_Manufacturing_Format)  Lipson-Cornell-NIST-AMF (https://www.nist.gov/sites/default/files/documents/2017/04/28/Lipson- Cornell-NIST-AMF.pdf)