interpolation/Cubic/Vector
< Interpolation | Cubic
Jump to navigation
Jump to search
Revision as of 02:53, 14 September 2011 by Nexii Malthus (talk | contribs) (Created page with "{{LSL_Function |mode=user |func=vCub |p1_type=vector|p1_name=a |p2_type=vector|p2_name=b |p3_type=vector|p3_name=c |p4_type=vector|p4_name=d |p5_type=float|p5_name=t |return_type…")
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: vector vCub( vector a, vector b, vector c, vector d, float t );
Cubic interpolation between four vectors.
Returns a vector
• vector | a | |||
• vector | b | |||
• vector | c | |||
• vector | d | |||
• float | t |
Specification
<lsl>vector vCub(vector a, vector b, vector c, vector d, float t) {
float P = (d-c)-(a-b); return P*llPow(t,3) + ((a-b)-P)*llPow(t,2) + (c-a)*t + b;
} // Released into public domain. By Nexii Malthus.</lsl>
Examples
<lsl></lsl>