0
0
3D Printingknowledge~10 mins

Exporting STL from CAD software in 3D Printing - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the sentence: The STL file format is primarily used to represent {{BLANK_1}} models.

3D Printing
The STL file format is primarily used to represent [1] models.
Drag options to blanks, or click blank then click option'
A3D
B2D
CText
DAudio
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing 3D with 2D models
Thinking STL includes color or texture
2fill in blank
medium

Complete the sentence: When exporting an STL file, the model is converted into a mesh of {{BLANK_1}}.

3D Printing
When exporting an STL file, the model is converted into a mesh of [1].
Drag options to blanks, or click blank then click option'
Acircles
Bsquares
Ctriangles
Dlines
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing squares or circles which are not used in STL meshes
3fill in blank
hard

Fix the error in the sentence: 'STL files can store {{BLANK_1}} and texture information.'

3D Printing
STL files can store [1] and texture information.
Drag options to blanks, or click blank then click option'
Aonly geometry
Bcolor
Csound
Danimation
Attempts:
3 left
💡 Hint
Common Mistakes
Assuming STL files include color or texture data
4fill in blank
hard

Fill both blanks to complete the sentence: To ensure a successful 3D print, the exported STL file must be {{BLANK_1}} and {{BLANK_2}}.

3D Printing
To ensure a successful 3D print, the exported STL file must be [1] and [2].
Drag options to blanks, or click blank then click option'
Awatertight
Bcolorful
Cmanifold
Dlarge
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'colorful' or 'large' which are unrelated to print quality
5fill in blank
hard

Fill all three blanks to complete the code snippet for exporting an STL file: <br>

exported_file = model.{{BLANK_1}}(filename='part.stl', {{BLANK_2}}='binary', {{BLANK_3}}=0.1)

3D Printing
exported_file = model.[1](filename='part.stl', [2]='binary', [3]=0.1)
Drag options to blanks, or click blank then click option'
Aexport_stl
Bformat
Ctolerance
Dimport_stl
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'import_stl' instead of export
Confusing parameter names