logoalt Hacker News

ozmaverick72today at 2:16 AM2 repliesview on HN

Interesting. I have played with OpenScad a bit. This looks similar - i guess the difference is the syntax is python - any other major differences


Replies

gcrtoday at 3:30 AM

OpenSCAD is all triangles and vertices. Fillets are difficult to do. Outputting circles/spheres generally requires you to for-loop over vertices a lot.

Libraries like build123d and cadquery use OpenCASCADE, a boundary representation kernel. You think in terms of the enclosed solid and perform operations - boolean add/subtract, fillet/chamfer, stamp text, etc - that return a new solid.

show 1 reply
DrNefariotoday at 2:19 AM

CadQuery can export STEP files, and is overall much nicer to use in my opinion.

show 2 replies