Example #1
0
    static void Main(string[] args)
    {
        BoundingVolume v1 = new BoundingBox();
        BoundingVolume v2 = new BoundingSphere();

        Console.WriteLine(v1.CollidesWith(v2));
    }
Example #2
0
 public bool CollidedWith(AABB test)
 {
     //Console.WriteLine("Checking collision");
     return(BoundingBox.CollidesWith(test));
 }