示例#1
0
        public void IntersectTest()
        {
            MBB mbb2 = new MBB(new Point(0, 0, 0), new Point(2, 2, 2));
            Ray ray  = new Ray(new Point(-1, 0, 0), new Point(-4, 1, 1));

            Assert.AreEqual(mbb2.Intersects(ray), false);
        }