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

Divide() public static méthode

Determines the quotient of two matrices.
public static Divide ( Matrix3x2 &left, Matrix3x2 &right, Matrix3x2 &result ) : void
left Matrix3x2 The first matrix to divide.
right Matrix3x2 The second matrix to divide.
result Matrix3x2 When the method completes, contains the quotient of the two matrices.
Résultat void
        public static void Divide(ref Matrix3x2 left, ref Matrix3x2 right, out Matrix3x2 result)
        {
            result.M11 = left.M11 / right.M11;
            result.M12 = left.M12 / right.M12;
            result.M21 = left.M21 / right.M21;
            result.M22 = left.M22 / right.M22;
            result.M31 = left.M31 / right.M31;
            result.M32 = left.M32 / right.M32;
        }

Same methods

Matrix3x2::Divide ( Matrix3x2 &left, float right, Matrix3x2 &result ) : void