/// <summary> /// Returns a matrix that is the transpose of m. /// The input matrix m is not modified. /// </summary> protected dmat3x4 transpose(dmat4x3 m) { throw _invalidAccess; }
/// <summary> /// Multiply matrix x by matrix y component-wise, i.e., result[i][j] is the scalar product of x[i][j] and y[i][j]. /// Note: to get linear algebraic matrix multiplication, use the multiply operator (*). /// </summary> protected dmat4x3 matrixCompMult(dmat4x3 x, dmat4x3 y) { throw _invalidAccess; }
/// <summary>initialized the matrix with the upperleft part of m</summary> public dmat4(dmat4x3 m) { throw _invalidAccess; }
/// <summary>initialized the matrix with the upperleft part of m</summary> public dmat4x2(dmat4x3 m) { throw _invalidAccess; }