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.
Each model keeps its full conversation, code, and imported files (SVG, DXF, STL). Fork any project to branch an idea.
Download binary STL, or 3MF with color() preserved as materials for multi-color slicing in Prusa, Bambu, or Cura.