Standalone OpenJSCAD for creating 3D objects on the fly.
OpenJSCAD is a really nice tool to edit CAD in the browser.
This is a standalone version that lets you create CSG objects on the fly, rather than passing a script to the OpenJSCAD processor.
This is useful if you want to:
- create geometry using the REPL of your browser console
- harness the power of additional javascript libraries
- create a visual programming frontend for OpenJSCAD
- Check out the OpenJSCAD Programming Guide
- use
show()
to show the objects in the browser
- Open the web page in your browser
- type this into the browser console:
text = vector_text(-100, 0, "Hello World !");
extruded = text.map(polyline => rectangular_extrude(polyline, {w: 2, h: 2}));
show(union(extruded));