All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scaffold.libs_as.starling.utils.rad2deg.as Maven / Gradle / Ivy

// =================================================================================================
//
//	Starling Framework
//	Copyright 2011-2015 Gamua. All Rights Reserved.
//
//	This program is free software. You can redistribute and/or modify it
//	in accordance with the terms of the accompanying license agreement.
//
// =================================================================================================

package starling.utils
{
    /** Converts an angle from radians into degrees. */
    public function rad2deg(rad:Number):Number
    {
        return rad / Math.PI * 180.0;            
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy