Functions | |
HC_BOOLEAN | Show_Bounding_Sphere (HC_POINT *center, float *radius) |
Returns the sphere used by HOOPS to circumscribe the geometry within a segment. More... | |
HC_BOOLEAN | DShow_Bounding_Sphere (HC_DPOINT *center, double *radius) |
Similar to Show_Bounding_Sphere(), but operates on double-precision data. More... | |
HC_BOOLEAN | Show_Bounding_Sphere_By_Key (HC_KEY key, HC_POINT *center, float *radius) |
Similar to Show_Bounding_Sphere(), but operates on an object referenced by an HC_KEY. More... | |
HC_BOOLEAN | DShow_Bounding_Sphere_By_Key (HC_KEY key, HC_DPOINT *center, double *radius) |
Similar to Show_Bounding_Sphere_By_Key(), but operates on double-precision data. More... | |
HC_BOOLEAN DShow_Bounding_Sphere | ( | HC_DPOINT * | center, |
double * | radius | ||
) |
Similar to Show_Bounding_Sphere(), but operates on double-precision data.
center | - The center position of a sphere that encompasses point the geometry contained within the segment. Returned to user. Passed by reference in all languages. |
radius | - The radius length of a sphere that encompasses the geometry contained within the segment. |
HC_BOOLEAN DShow_Bounding_Sphere_By_Key | ( | HC_KEY | key, |
HC_DPOINT * | center, | ||
double * | radius | ||
) |
Similar to Show_Bounding_Sphere_By_Key(), but operates on double-precision data.
key | - Key of the segment to use. |
center | - The center position of a sphere that encompasses point the geometry contained within the segment. Returned to user. Passed by reference in all languages. |
radius | - The radius length of a sphere that encompasses the geometry contained within the segment. |
HC_BOOLEAN Show_Bounding_Sphere | ( | HC_POINT * | center, |
float * | radius | ||
) |
Returns the sphere used by HOOPS to circumscribe the geometry within a segment.
center | - The center position of a sphere that encompasses point the geometry contained within the segment. Returned to user. Passed by reference in all languages. |
radius | - The radius length of a sphere that encompasses the geometry contained within the segment. |
See the discussion for Show_Bounding_Cuboid() . As one could guess from the name, the only difference is that the volume for Show_Bounding_Sphere() is expressed as a sphere instead of a cuboid.
HC_BOOLEAN Show_Bounding_Sphere_By_Key | ( | HC_KEY | key, |
HC_POINT * | center, | ||
float * | radius | ||
) |
Similar to Show_Bounding_Sphere(), but operates on an object referenced by an HC_KEY.
key | - Key of the segment to use. |
center | - The center position of a sphere that encompasses point the geometry contained within the segment. Returned to user. Passed by reference in all languages. |
radius | - The radius length of a sphere that encompasses the geometry contained within the segment. |
No additional details. See Show_Bounding_Sphere()