mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 00:09:41 +00:00
Builtin sphere() module does not have a center= argument.
This commit is contained in:
parent
70be304f01
commit
337d51be15
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue