in development · early access · a crowe logic product

Describe the part. Get the model.

Crowe CAD is generative-first parametric CAD. CroweLM-CAD emits real OpenSCAD you can read, version, and edit — with the unmodified OpenSCAD engine rendering it underneath. The model is code, not a mesh.

crowe-cad — generate
> a wide-mouth jar lid, 86mm thread, 0.4mm clearance, 6mm filter port

// lid.scad — generated
module lid(d=86, clearance=0.4, port=6) {
  difference() {
    thread_outer(d + clearance);
    translate([0,0,2]) cylinder(d=port, h=20);
  }
}
✓ rendered · lid.scad · 1 part · editable

how it works

Generative on top, deterministic below

GENERATE

Describe the part

Say what you need; CroweLM-CAD writes the parametric model — dimensions, tolerances, fits — as a starting point you can drive.

READABLE

Real OpenSCAD, not a black box

Output is OpenSCAD code you can read, version in git, and edit by hand. The model is the source, not a binary mesh.

ENGINE

OpenSCAD underneath, unmodified

The proven OpenSCAD engine renders it server-side — generative shell on top, deterministic geometry below.

MOAT

Tuned for real hardware

Trained on cultivation and lab hardware — jar lids, monotubs, flow-hood parts — not generic shapes.