lookup_vector() -> v_lookup()

This commit is contained in:
Revar Desmera 2023-05-01 21:49:39 -07:00
parent 9aec87247a
commit 718910381c

View file

@ -74,7 +74,7 @@ function count(n,s=0,step=1,reverse=false) = let(n=is_list(n) ? len(n) : n)
// Function: lerp() // Function: lerp()
// Synopsis: Linearly interpolates between two values. // Synopsis: Linearly interpolates between two values.
// Topics: Interpolation, Math // Topics: Interpolation, Math
// See Also: lookup_vector(), lerpn() // See Also: v_lookup(), lerpn()
// Usage: // Usage:
// x = lerp(a, b, u); // x = lerp(a, b, u);
// l = lerp(a, b, LIST); // l = lerp(a, b, LIST);
@ -114,7 +114,7 @@ function lerp(a,b,u) =
// Function: lerpn() // Function: lerpn()
// Synopsis: Returns exactly `n` values, linearly interpolated between `a` and `b`. // Synopsis: Returns exactly `n` values, linearly interpolated between `a` and `b`.
// Topics: Interpolation, Math // Topics: Interpolation, Math
// See Also: lookup_vector(), lerp() // See Also: v_lookup(), lerp()
// Usage: // Usage:
// x = lerpn(a, b, n); // x = lerpn(a, b, n);
// x = lerpn(a, b, n, [endpoint]); // x = lerpn(a, b, n, [endpoint]);