示例#1
0
文件: R3Cont.C 项目: acplus/peptalk
RNBoolean R3Contains(const R3Box& box, const R3Plane& plane)
{
    // Return whether box contains plane
    if (box.IsFinite()) return FALSE;
    RNAbort("Not Implemented");
    return FALSE;
}
示例#2
0
文件: R3Cont.C 项目: acplus/peptalk
RNBoolean R3Contains(const R3Box& box, const R3Ray& ray)
{
    // Return whether box contains ray
    if (box.IsFinite()) return FALSE;
    RNAbort("Not Implemented");
    return FALSE;
}