示例#1
0
        public void IntersectionAllowedTest(bool leftHit, bool insideLeft, bool insideRight, bool expected)
        {
            var intersectionCsg = new CsgIntersection(new Sphere(), new Sphere());

            Check.That(intersectionCsg.IntersectionAllowed(leftHit, insideLeft, insideRight)).IsEqualTo(expected);
        }