diff --git a/arrays.scad b/arrays.scad index bbac08b..bc1d295 100644 --- a/arrays.scad +++ b/arrays.scad @@ -297,7 +297,7 @@ function deduplicate(list, closed=false, eps=EPSILON) = // N = scalar total number of points desired or vector requesting N[i] copies of vertex i. // exact = if true return exactly the requested number of points, possibly sacrificing uniformity. If false, return uniform points that may not match the number of points requested. Default: True // Examples: -// list = [0,1,2,3]/ +// list = [0,1,2,3]; // echo(repeat_entries(list, 6)); // Ouputs [0,0,1,2,2,3] // echo(repeat_entries(list, 6, exact=false)); // Ouputs [0,0,1,1,2,2,3,3] // echo(repeat_entries(list, [1,1,2,1], exact=false)); // Ouputs [0,1,2,2,3] diff --git a/version.scad b/version.scad index a139b3a..1164477 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,94]; +BOSL_VERSION = [2,0,95]; // Section: BOSL Library Version Functions