Computes the bounding box for a curve in 3d. Functions to add a 3D curve to a bounding box. The 3D curve is defined from a Geom curve.
More...
|
static void | Add (const Adaptor3d_Curve &C, const Standard_Real Tol, Bnd_Box &B) |
| Adds to the bounding box B the curve C B is then enlarged by the tolerance value Tol. Note: depending on the type of curve, one of the following representations of the curve C is used to include it in the bounding box B:
|
|
static void | Add (const Adaptor3d_Curve &C, const Standard_Real U1, const Standard_Real U2, const Standard_Real Tol, Bnd_Box &B) |
| Adds to the bounding box B the curve C the arc of the curve C limited by the two parameter values P1 and P2. Note: depending on the type of curve, one of the following representations of the curve C is used to include it in the bounding box B:
|
|
static void | AddOptimal (const Adaptor3d_Curve &C, const Standard_Real Tol, Bnd_Box &B) |
| Adds to the bounding box B the curve C These methods use more precise algorithms for building bnd box then methods Add(...)
|
|
static void | AddOptimal (const Adaptor3d_Curve &C, const Standard_Real U1, const Standard_Real U2, const Standard_Real Tol, Bnd_Box &B) |
|
static void | AddGenCurv (const Adaptor3d_Curve &C, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real Tol, Bnd_Box &B) |
| Adds to the bounding box B the curve C using numerical minimization algorithms This method is used in AddOptimal for not analytical curves. if Tol < Precision::Confusion(), Precision:;Confusion is used as computation tolerance.
|
|
Computes the bounding box for a curve in 3d. Functions to add a 3D curve to a bounding box. The 3D curve is defined from a Geom curve.