Builtin sphere() module does not have a center= argument.

This commit is contained in:
Garth Minette 2021-09-30 01:45:53 -07:00
parent 70be304f01
commit 337d51be15

View file

@ -23,7 +23,7 @@ module _cube(size,center) cube(size,center=center);
module _cylinder(h,r1,r2,center,r,d,d1,d2) cylinder(h,r=r,d=d,r1=r1,r2=r2,d1=d1,d2=d2,center=center);
module _sphere(r,center,d) sphere(r=r,d=d,center=center);
module _sphere(r,d) sphere(r=r,d=d);