Function | Defined By | ||
---|---|---|---|
clamp(value:Number, minimum:Number, maximum:Number):Number
Forces a numeric value into a specified range. | feathers.utils.math | ||
roundDownToNearest(number:Number, nearest:Number = 1):Number
Rounds a Number down to the nearest multiple of an input. | feathers.utils.math | ||
roundToNearest(number:Number, nearest:Number = 1):Number
Rounds a Number to the nearest multiple of an input. | feathers.utils.math | ||
roundToPrecision(number:Number, precision:int = 0):Number
Rounds a number to a certain level of precision. | feathers.utils.math | ||
roundUpToNearest(number:Number, nearest:Number = 1):Number
Rounds a Number up to the nearest multiple of an input. | feathers.utils.math |
clamp | () | function |
public function clamp(value:Number, minimum:Number, maximum:Number):Number
Product Version : | Feathers 1.0.0 |
Forces a numeric value into a specified range.
Parameters
value:Number — The value to force into the range.
| |
minimum:Number — The minimum bound of the range.
| |
maximum:Number — The maximum bound of the range.
|
Number — A value within the specified range.
|
roundDownToNearest | () | function |
public function roundDownToNearest(number:Number, nearest:Number = 1):Number
Product Version : | Feathers 1.0.0 |
Rounds a Number down to the nearest multiple of an input. For example, by rounding 16 down to the nearest 10, you will receive 10. Similar to the built-in function Math.floor().
Parameters
number:Number — the number to round down
| |
nearest:Number (default = 1 ) — the number whose mutiple must be found
|
Number — the rounded number
|
See also
roundToNearest | () | function |
public function roundToNearest(number:Number, nearest:Number = 1):Number
Product Version : | Feathers 1.0.0 |
Rounds a Number to the nearest multiple of an input. For example, by rounding 16 to the nearest 10, you will receive 20. Similar to the built-in function Math.round().
Parameters
number:Number — the number to round
| |
nearest:Number (default = 1 ) — the number whose mutiple must be found
|
Number — the rounded number
|
See also
roundToPrecision | () | function |
public function roundToPrecision(number:Number, precision:int = 0):Number
Product Version : | Feathers 1.0.0 |
Rounds a number to a certain level of precision. Useful for limiting the number of decimal places on a fractional number.
Parameters
number:Number — the input number to round.
| |
precision:int (default = 0 ) — the number of decimal digits to keep
|
Number — the rounded number, or the original input if no rounding is needed
|
See also
roundUpToNearest | () | function |
public function roundUpToNearest(number:Number, nearest:Number = 1):Number
Product Version : | Feathers 1.0.0 |
Rounds a Number up to the nearest multiple of an input. For example, by rounding 16 up to the nearest 10, you will receive 20. Similar to the built-in function Math.ceil().
Parameters
number:Number — the number to round up
| |
nearest:Number (default = 1 ) — the number whose mutiple must be found
|
Number — the rounded number
|
See also