interpolation/Linear/Float
< Interpolation | Linear
Jump to navigation
Jump to search
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Specification
float fLin(float x, float y, float t) {
return x*(1-t) + y*t;
}
// Released into public domain. By Nexii Malthus.
Examples
float value = fLin(-5, 15, 0.6); // value == 7