BodyTests TestApplyTorque Method Delta Engine Documentation

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

public void TestApplyTorque()
Examples

[Test]
public void TestApplyTorque()
{
    var body = physics.CreateRectangle(new Size(45.0f, 45.0f));
    Assert.IsNotNull(body);
    body.ApplyTorque(10.0f);
}
See Also