was.js – Blame information for rev 47

Subversion Repositories:
Rev:
Rev Author Line No. Line
47 office 1 /*************************************************************************/
2 /* Copyright (C) 2015 Wizardry and Steamworks - License: GNU GPLv3 */
3 /*************************************************************************/
4 function wasMapValueToRange(value, xMin, xMax, yMin, yMax) {
5 return yMin + (
6 ( yMax - yMin ) * ( value - xMin ) / ( xMax - xMin )
7 );
8 }
9  
10 /*************************************************************************/
11 /* Node.JS package export. */
12 /*************************************************************************/
13 if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
14 module.exports.mathematics = {
15 MapValueToRange: wasMapValueToRange
16 };
17 }