Box2DX.Common.Mat22.GetAngle C# (CSharp) Method

GetAngle() public method

Extract the angle from this matrix (assumed to be a rotation matrix).
public GetAngle ( ) : float
return float
        public float GetAngle()
        {
            return Mathf.Atan2(Col1.y, Col1.x);
        }