An AI-powered OpenSCAD workshop by Everything 3D. Chat your way to precise, parametric 3D models — rendered live in the browser, exported ready to print.
a 12-tooth gear on a mounting plate, 5 mm bore — make the gear red and the plate blue
// gear_mount.scad
teeth = 12;
bore = 5;
color("tomato")
gear(teeth, mod = 2);
color([0.2, 0.5, 1])
translate([0, 0, 8])
mounting_plate(bore);Describe the part in plain language. An AI agent writes complete, parametric OpenSCAD — every turn is a full program, always renderable.
The actual OpenSCAD compiler (WebAssembly, Manifold backend) renders live as you type. No install, no server round-trips.
Begin from a canonical design or a blank model. Every derivative gets an independent workspace with its own chat, code, and files.
Download binary STL, or 3MF with color() preserved as materials for multi-color slicing in Prusa, Bambu, or Cura.