Box2DX.Common.Mat22.GetAngle C# (CSharp) 메소드

GetAngle() 공개 메소드

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