ActorTests TestBoundingSphere Method Delta Engine Documentation

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

public void TestBoundingSphere()
Examples

[Test]
public void TestBoundingSphere()
{
    var actor = new MockActor(Vector3D.One, 1.0f);
    var sphere = new BoundingSphere(Vector3D.One, 1.0f);
    Assert.AreEqual(sphere, actor.GetBoundingSphere());
}
See Also