interpolation/Cosine/Float
< Interpolation | Cosine
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Specification
<source lang="lsl2">float fCos(float x, float y, float t) {
float F = (1-llCos(t*PI))/2; return x*(1-F)+y*F;
} // Released into public domain. By Nexii Malthus.</source>
Examples
<source lang="lsl2"></source>