1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-02-24 01:22:27 +01:00

change default value

This commit is contained in:
Justin Lin 2019-06-21 06:38:01 +08:00
parent 5d8abc1028
commit 631d0c8506
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ function _px_circle_sub(center, f, ddf_x, ddf_y, x, y, filled) =
function _px_circle(center, f, ddf_x, ddf_y, x, y, filled) =
x >= y ? [] : _px_circle_sub(center, f, ddf_x, ddf_y, x, y, filled);
function px_circle(radius, center = [0, 0], filled = false) =
function px_circle(radius, center = [0, 0], filled = true) =
let(
x0 = center[0],
y0 = center[1],

View File

@ -23,7 +23,7 @@ function _px_cylinder_same_r(r, h, center, filled) =
]
];
function px_cylinder(r, h, center, filled = false) =
function px_cylinder(r, h, center, filled = true) =
is_num(r) ?
_px_cylinder_same_r(r, h, center, filled) :
_px_cylinder_diff_r(r, h, center, filled);