mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-07 12:49:46 +00:00
Merge pull request #607 from revarbat/revarbat_dev
Fixed path_chamfer_and_rounding() default for closed=
This commit is contained in:
commit
a282d224d3
1 changed files with 1 additions and 1 deletions
|
@ -453,7 +453,7 @@ function path_torsion(path, closed=false) =
|
||||||
// rs = [for (i=[0:4]) each [0,10]];
|
// rs = [for (i=[0:4]) each [0,10]];
|
||||||
// path2 = path_chamfer_and_rounding(path, closed=true, chamfer=chamfs, rounding=rs);
|
// path2 = path_chamfer_and_rounding(path, closed=true, chamfer=chamfs, rounding=rs);
|
||||||
// stroke(path2, closed=true);
|
// stroke(path2, closed=true);
|
||||||
function path_chamfer_and_rounding(path, closed, chamfer, rounding) =
|
function path_chamfer_and_rounding(path, closed=true, chamfer, rounding) =
|
||||||
let (
|
let (
|
||||||
path = deduplicate(path,closed=true),
|
path = deduplicate(path,closed=true),
|
||||||
lp = len(path),
|
lp = len(path),
|
||||||
|
|
Loading…
Reference in a new issue