interpolation/Linear/Vector
< Interpolation | Linear
Jump to navigation
Jump to search
Revision as of 02:36, 14 September 2011 by Nexii Malthus (talk | contribs)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: vector vLin( vector x, vector y, float t );
Interpolates between two vector values in a linear fashion.
Returns a vector
• vector | x | |||
• vector | y | |||
• float | t |
Specification
<lsl>vector vLin(vector x, vector y, float t){
return x*(1-t) + y*t;
} // Released into public domain. By Nexii Malthus.</lsl>
Examples
<lsl> vector x = <-5, 1, 10>; vector y = <15, 2, 2>;
vector z = vLin(x, y, 0.6); // z == <7, 1.6, 5.2></lsl>