示例#1
0
文件: R3Cont.C 项目: acplus/peptalk
RNBoolean R3Contains(const R3Sphere& sphere, const R3Plane& plane)
{
    // Return whether sphere contains plane
    if (sphere.IsFinite()) return FALSE;
    return TRUE;
}
示例#2
0
文件: R3Cont.C 项目: acplus/peptalk
RNBoolean R3Contains(const R3Sphere& sphere, const R3Halfspace& halfspace)
{
    // Return whether sphere contains halfspace
    if (sphere.IsFinite()) return FALSE;
    return TRUE;
}
示例#3
0
文件: R3Cont.C 项目: acplus/peptalk
RNBoolean R3Contains(const R3Sphere& sphere, const R3Ray& ray)
{
    // Return whether sphere contains ray
    if (sphere.IsFinite()) return FALSE;
    return TRUE;
}