Fusion.Core.Mathematics.Matrix3x2.Skew C# (CSharp) Méthode

Skew() public static méthode

Creates a skew matrix.
public static Skew ( float angleX, float angleY ) : Matrix3x2
angleX float Angle of skew along the X-axis in radians.
angleY float Angle of skew along the Y-axis in radians.
Résultat Matrix3x2
        public static Matrix3x2 Skew(float angleX, float angleY)
        {
            Matrix3x2 result;
            Skew(angleX, angleY, out result);
            return result;
        }

Same methods

Matrix3x2::Skew ( float angleX, float angleY, Matrix3x2 &result ) : void