WolfgangFahl / nicescad

nicescad brings OpenScad to the browser (again)
http://nicescad.bitplan.com
Apache License 2.0
4 stars 0 forks source link

add SolidPython support #28

Open WolfgangFahl opened 1 year ago

WolfgangFahl commented 1 year ago

see ttps://github.com/jeff-dh/SolidPython/issues/34

WolfgangFahl commented 1 year ago

command line version:

p2scad --python_code "difference()(cube(10),sphere(15))"
difference() {
    cube(size = 10);
    sphere(r = 15);
}