Skip to content

Standalone version of OpenJSCAD, that lets you create CSG objects on the fly

Notifications You must be signed in to change notification settings

bitcraftlab/OpenJSCAD-Live

Repository files navigation

OpenJSCAD Live

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

Programming Guide

Hello World

  1. Open the web page in your browser
  2. 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));

Links

About

Standalone version of OpenJSCAD, that lets you create CSG objects on the fly

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages