Namespace: DeltaEngine.Datatypes
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Tests: DeltaEngine.Tests.Datatypes.BoundingBoxTests
1 unit tests call DeltaEngine.Datatypes.BoundingBox.Equals(System.Object)
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Parameters
- obj
- Type: System Object
Return Value
Type: BooleanRemarks
Examples
[Test] public void CheckForExactEquality() { var box = new BoundingBox(Vector3D.Zero, Vector3D.One); var equalBox = new BoundingBox(Vector3D.Zero, Vector3D.One); Assert.IsTrue(box.Equals((object)equalBox)); }
See Also