Exemplo n.º 1
0
        public bool AABBCollision(BoundingBox otherAABB)
        {
            // Test collision with the target mesh if the target is active
            if (isActive)
            {
                return(targetMesh.AABBCollision(otherAABB));
            }

            return(false);
        }