SimplePhysicsTests RotateAdvancesAngleCorrectly Method Delta Engine Documentation

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

public void RotateAdvancesAngleCorrectly()
Examples

[Test, CloseAfterFirstFrame]
public void RotateAdvancesAngleCorrectly()
{
    var rect = new FilledRect(new Rectangle(ScreenSpace.Current.Viewport.TopLeft, new Size(0.2f)),
        Color.Red);
    rect.Rotation = 0;
    rect.Add(new SimplePhysics.Data { Gravity = Vector2D.Zero, RotationSpeed = 0.1f });
See Also