MatrixTests SetRightVector 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 SetRightVector()
Examples

[Test]
public void SetRightVector()
{
    matrix.Right = new Vector3D(1, 10, 20);
    Assert.AreEqual(new Vector3D(1, 10, 20), matrix.Right);
}
See Also