Function | Defined By | ||
---|---|---|---|
deg2rad(deg:Number):Number Converts an angle from degrees into radians. | starling.utils | ||
execute(func:Function, ... args):void Executes a function with the specified arguments. | starling.utils | ||
rad2deg(rad:Number):Number Converts an angle from radians into degrees. | starling.utils |
deg2rad | () | function |
public function deg2rad(deg:Number):Number
Converts an angle from degrees into radians.
Parameters
deg:Number |
Number |
execute | () | function |
public function execute(func:Function, ... args):void
Executes a function with the specified arguments. If the argument count does not match
the function, the argument list is cropped / filled up with null
values.
Parameters
func:Function | |
... args |
rad2deg | () | function |
public function rad2deg(rad:Number):Number
Converts an angle from radians into degrees.
Parameters
rad:Number |
Number |