diff --git a/index.xhtml b/index.xhtml index 978eb4f..3aa4446 100644 --- a/index.xhtml +++ b/index.xhtml @@ -150,6 +150,19 @@ cylinder(h=50, r1=20, r2=5); Note that the cylinder command will put the center of one end of the bottom circle at the origin — [0,0,0].

+
+

Importing 3D Models

+

+ OpenSCAD has the ability to import shapes from other 3D applications if those shapes are stored in an .stl file. +

+

+ You can import these models with the import command. + For example: +

+
+import("3dbenchy.stl")
+
+