interpolation/Rescale/Float

From Second Life Wiki
< Interpolation‎ | Rescale
Revision as of 04:23, 14 September 2011 by Nexii Malthus (talk | contribs)
Jump to navigation Jump to search

Summary

Function: float fScl( float from_a, float from_b, float to_a, float to_b, float from );

Rescales a value from one range to another range.
Returns a float

• float from_a
• float from_b
• float to_a
• float to_b
• float from

Specification

<lsl>float fScl(float from_min, float from_max, float to_min, float to_max, float from) {

   return to_min + ((to_max-to_min) * ((from_min-from) / (from_min-from_max)));

} // Released into public domain. By Nexii Malthus.</lsl>

Examples

<lsl>float value = fScl(0.0, 1.0, -5, 15, 0.6); // value == 7</lsl>