Ejemplo n.º 1
0
 /// <summary>
 /// Multiplies two instances.
 /// </summary>
 /// <param name="left">The left operand of the multiplication.</param>
 /// <param name="right">The right operand of the multiplication.</param>
 /// <returns>A new instance that is the result of the multiplication.</returns>
 public static Matrix3d Mult(Matrix3x2d left, Matrix2x3d right)
 {
     Mult(ref left, ref right, out Matrix3d result);
     return(result);
 }