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);
        }