Пример #1
0
        public bool TestStrict(Box first, TrianglePair second)
        {
            var secondBound = second.Original.Bounds;

            return((intervalIntersector.TestStrict(first.X, secondBound.X)) &&
                   (intervalIntersector.TestStrict(first.Y, secondBound.Y)) &&
                   (intervalIntersector.TestStrict(first.Z, secondBound.Z)));
        }
Пример #2
0
 public bool TestStrict(Box first, Box second)
 {
     return((intervalIntersector.TestStrict(first.X, second.X)) &&
            (intervalIntersector.TestStrict(first.Y, second.Y)) &&
            (intervalIntersector.TestStrict(first.Z, second.Z)));
 }