JointTests CreateAngleJoint Method Delta Engine Documentation

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

public void CreateAngleJoint()
Examples

[Test]
public void CreateAngleJoint()
{
    var bodyB = physics.CreateCircle(3.0f);
    var joint = physics.CreateAngleJoint(body, bodyB, (float)Math.PI / 2);
    Assert.IsNotNull(joint);
}
See Also