mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 00:09:41 +00:00
lookup_vector() -> v_lookup()
This commit is contained in:
parent
9aec87247a
commit
718910381c
1 changed files with 2 additions and 2 deletions
|
@ -74,7 +74,7 @@ function count(n,s=0,step=1,reverse=false) = let(n=is_list(n) ? len(n) : n)
|
|||
// Function: lerp()
|
||||
// Synopsis: Linearly interpolates between two values.
|
||||
// Topics: Interpolation, Math
|
||||
// See Also: lookup_vector(), lerpn()
|
||||
// See Also: v_lookup(), lerpn()
|
||||
// Usage:
|
||||
// x = lerp(a, b, u);
|
||||
// l = lerp(a, b, LIST);
|
||||
|
@ -114,7 +114,7 @@ function lerp(a,b,u) =
|
|||
// Function: lerpn()
|
||||
// Synopsis: Returns exactly `n` values, linearly interpolated between `a` and `b`.
|
||||
// Topics: Interpolation, Math
|
||||
// See Also: lookup_vector(), lerp()
|
||||
// See Also: v_lookup(), lerp()
|
||||
// Usage:
|
||||
// x = lerpn(a, b, n);
|
||||
// x = lerpn(a, b, n, [endpoint]);
|
||||
|
|
Loading…
Reference in a new issue