Fixed missing docs for method= arg of subdivide_path()

This commit is contained in:
Revar Desmera 2019-12-06 19:16:31 -08:00
parent 2b829f185a
commit b0b4e026a8
2 changed files with 2 additions and 1 deletions

View File

@ -726,6 +726,7 @@ function _sum_preserving_round(data, index=0) =
// N = scalar total number of points desired or with `method="segment"` can be a vector requesting `N[i]-1` points on segment i.
// closed = set to false if the path is open. Default: True
// exact = if true return exactly the requested number of points, possibly sacrificing uniformity. If false, return uniform point sample that may not match the number of points requested. Default: True
// method = One of `"length"` or `"segment"`. If `"length"`, adds vertices evenly along the total path length. If `"segment"`, adds points evenly among the segments. Default: `"length"`
// Example(2D):
// mypath = subdivide_path(square([2,2],center=true), 12);
// place_copies(mypath)circle(r=.1,$fn=32);

View File

@ -8,7 +8,7 @@
//////////////////////////////////////////////////////////////////////
BOSL_VERSION = [2,0,55];
BOSL_VERSION = [2,0,57];
// Section: BOSL Library Version Functions