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

[Test]
public void SetUpVector()
{
    matrix.Up = new Vector3D(3, 20, 30);
    Assert.AreEqual(new Vector3D(3, 20, 30), matrix.Up);
}
See Also