RNBoolean R3Contains(const R3Box& box, const R3Plane& plane) { // Return whether box contains plane if (box.IsFinite()) return FALSE; RNAbort("Not Implemented"); return FALSE; }
RNBoolean R3Contains(const R3Box& box, const R3Ray& ray) { // Return whether box contains ray if (box.IsFinite()) return FALSE; RNAbort("Not Implemented"); return FALSE; }