Completed initial CAD package guides, tweaked initial code import
This commit is contained in:
12
app/web/src/helpers/cadPackages/openScad/initialCode.SCAD
Normal file
12
app/web/src/helpers/cadPackages/openScad/initialCode.SCAD
Normal file
@@ -0,0 +1,12 @@
|
||||
// involute donut
|
||||
|
||||
// ^ first comment is used for download title (i.e "involute-donut.stl")
|
||||
|
||||
// Follow the OpenSCAD tutorial: https://learn.cadhub.xyz/docs/
|
||||
|
||||
radius=3;
|
||||
color(c="DarkGoldenrod")rotate_extrude()translate([20,0])circle(d=30);
|
||||
color(c="hotpink")rotate_extrude()translate([20,0])offset(radius)offset(-radius)difference(){
|
||||
circle(d=34);
|
||||
translate([-200,-500])square([500,500]);
|
||||
}
|
||||
@@ -1,7 +1,8 @@
|
||||
---
|
||||
"Written with": C+-like
|
||||
"Kernal type": BREP
|
||||
title: OpenSCAD
|
||||
Written with: Custom language
|
||||
Kernal type: BREP
|
||||
Maintained by: [Marius Kintel + 15 members](https://github.com/openscad)
|
||||
Documentation: [openscad.org](https://openscad.org/)
|
||||
---
|
||||
# OpenSCAD
|
||||
|
||||
OpenSCAD is a solid 3D modeler that enables the creation of parametric models using its scripting language. Models are created by utilizing a technique called constructive solid geometry. According to this technique, simple objects can be transformed and combined in order to create almost any complex model.
|
||||
Reference in New Issue
Block a user