mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-05 17:07:41 +02:00
Example typo fix.
This commit is contained in:
@@ -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.
|
// 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
|
// 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:
|
// 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)); // 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, 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]
|
// echo(repeat_entries(list, [1,1,2,1], exact=false)); // Ouputs [0,1,2,2,3]
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
BOSL_VERSION = [2,0,94];
|
BOSL_VERSION = [2,0,95];
|
||||||
|
|
||||||
|
|
||||||
// Section: BOSL Library Version Functions
|
// Section: BOSL Library Version Functions
|
||||||
|
Reference in New Issue
Block a user