MatrixTests MultiplyMatrix Method Delta Engine Documentation

Namespace: DeltaEngine.Tests.Datatypes
Assembly: DeltaEngine.Tests (in DeltaEngine.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void MultiplyMatrix()
Examples

[Test]
public void MultiplyMatrix()
{
    var matrix2 = new Matrix(-1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15,
        -16);
    var result = new Matrix(-62, -68, -74, -80, -174, -196, -218, -240, -286, -324, -362, -400,
        -398, -452, -506, -560);
    Assert.AreEqual(result, matrix * matrix2);
}
See Also