From c52f1d588939745cf413ce5a332af15b48123b26 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Sun, 14 Jan 2024 14:58:38 -0800 Subject: [PATCH] initial commits --- index.xhtml | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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")
+
+