protected extern mat3x2 transpose(mat2x3 m);
Esempio n. 2
0
 /// <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 mat3x2 transpose(mat2x3 m)
 {
     return(null);
 }
 protected extern mat2x3 matrixCompMult(mat2x3 x, mat2x3 y);
Esempio n. 4
0
 protected mat2x3 matrixCompMult(mat2x3 x, mat2x3 y)
 {
     throw new NotImplementedException();
 }
Esempio n. 5
0
 protected mat3x2 transpose(mat2x3 m)
 {
     throw new NotImplementedException();
 }
 /// <summary>
 /// Returns a matrix that is the transpose of m. 
 /// The input matrix m is not modified.
 /// </summary>
 protected mat3x2 transpose(mat2x3 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 mat2x3 matrixCompMult(mat2x3 x, mat2x3 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(mat2x3 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(mat2x3 m)
 {
     throw _invalidAccess;
 }
Esempio n. 10
0
 /// <summary>
 /// Returns a matrix that is the transpose of m.
 /// The input matrix m is not modified.
 /// </summary>
 protected mat3x2 transpose(mat2x3 m)
 {
     throw _invalidAccess;
 }
Esempio n. 11
0
 /// <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 mat2x3 matrixCompMult(mat2x3 x, mat2x3 y)
 {
     throw _invalidAccess;
 }
Esempio n. 12
0
 /// <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(mat2x3 m)
 {
     throw _invalidAccess;
 }