initial commits

master
Charles Iliya Krempeaux 2024-01-14 14:58:38 -08:00
parent 79b060c9b2
commit c52f1d5889
1 changed files with 13 additions and 0 deletions

View File

@ -150,6 +150,19 @@ cylinder(h=50, r1=20, r2=5);
Note that the <code>cylinder<code> command will put the center of one end of the bottom circle at the origin — <code>[0,0,0]</code>. Note that the <code>cylinder<code> command will put the center of one end of the bottom circle at the origin — <code>[0,0,0]</code>.
</p> </p>
</section> </section>
<section>
<h2>Importing 3D Models</h2>
<p>
<strong>OpenSCAD</strong> has the ability to import shapes from other 3D applications if those shapes are stored in an <strong>.stl file</strong>.
</p>
<p>
You can import these models with the <code>import</code> command.
For example:
</p>
<code><pre>
import("3dbenchy.stl")
</pre></code>
</section>
</article> </article>
</main> </main>
</body> </body>