protected extern mat4x2 transpose(mat2x4 m);
/// <summary> /// Returns a matrix that is the transpose /// of m. The input matrix is not /// modified. /// </summary> /// <param name="m"></param> /// <returns></returns> public static mat4x2 transpose(mat2x4 m) { return(null); }
protected extern mat2x4 matrixCompMult(mat2x4 x, mat2x4 y);
protected mat2x4 matrixCompMult(mat2x4 x, mat2x4 y) { throw new NotImplementedException(); }
protected mat4x2 transpose(mat2x4 m) { throw new NotImplementedException(); }
/// <summary> /// Returns a matrix that is the transpose of m. /// The input matrix m is not modified. /// </summary> protected mat4x2 transpose(mat2x4 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 mat2x4 matrixCompMult(mat2x4 x, mat2x4 y) { throw _invalidAccess; }
/// <summary>initialized the matrix with the upperleft part of m /// sets the lower right diagonal component(s) to 1, everything else to 0</summary> public mat4x3(mat2x4 m) { throw _invalidAccess; }
/// <summary>initialized the matrix with the upperleft part of m /// sets the lower right diagonal component(s) to 1, everything else to 0</summary> public mat3x4(mat2x4 m) { throw _invalidAccess; }
/// <summary>initialized the matrix with the upperleft part of m /// sets the lower right diagonal component(s) to 1, everything else to 0</summary> public mat4(mat2x4 m) { throw _invalidAccess; }