Exemplo n.º 1
0
 public Matrix3x3 ConjugateTranspose() => StructsExtensions.GetMatrix3x3(this.ToMathMatrix().ConjugateTranspose());
Exemplo n.º 2
0
 public Matrix3x3 ConjugateTransposeThisAndMultiply(Matrix3x3 inputMatrix) => StructsExtensions.GetMatrix3x3(this.ToMathMatrix().ConjugateTransposeThisAndMultiply(inputMatrix.ToMathMatrix()));
Exemplo n.º 3
0
 public Matrix3x3 Inverse() => StructsExtensions.GetMatrix3x3(this.ToMathMatrix().Inverse());