+Below is the OpenJsCad script for this demo. To build your own models, create a .jscad script
+and use the OpenJsCad parser. For more information see the
+OpenJsCad documentation.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/index.html b/index.html
index 56f5e5f..63d0055 100644
--- a/index.html
+++ b/index.html
@@ -115,7 +115,10 @@ Click and drag to rotate the model around the origin.
Shift+Drag moves the model around.
Alt+drag zooms (by changing the distance between camera and model).
Copyright (c) 2012 Joost Nieuwenhuijse.
Uses CSG.js, original copyright (c) 2011 Evan Wallace,
@@ -435,6 +438,7 @@ var extruded=shape2d.extrude({
twiststeps: 100 // create 100 slices
});
+For an example of 2D shapes see the Parametric S hook demo.
2D Paths
A path is simply a series of points, connected by lines. A path can be open or closed (an additional line
@@ -553,6 +557,7 @@ function main(params) {
return result;
}
+Or see the Gears demo for another example of interactive parameters.