QuadraticScreenSpaceTests TestAspectRatio Method Delta Engine Documentation

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

public void TestAspectRatio()
Examples

[Test]
public void TestAspectRatio()
{
    var screen = new QuadraticScreenSpace(window);
    window.ViewportPixelSize = new Size(800, 800);
    Assert.AreEqual(1f, screen.AspectRatio);
    window.ViewportPixelSize = new Size(1920, 1080);
    Assert.AreEqual(0.5625f, screen.AspectRatio);
}
See Also