Open CASCADE Technology
7.4.0
|
Approximate the projection of a 3d curve on an polar surface and stores the result in Approx. The result is a 2d curve. The evaluation of the current point of the 2d curve is done with the evaluation of the extrema P3d - Surface. For approximation some parameters are used, including required tolerance of approximation. Tolerance is maximal possible value of 3d deviation of 3d projection of projected curve from "exact" 3d projection. Since algorithm searches 2d curve on surface, required 2d tolerance is computed from 3d tolerance with help of U,V resolutions of surface. 3d and 2d tolerances have sence only for curves on surface, it defines precision of projecting and approximation and have nothing to do with distance between the projected curve and the surface. More...
#include <ProjLib_ComputeApproxOnPolarSurface.hxx>
Public Member Functions | |
ProjLib_ComputeApproxOnPolarSurface () | |
Empty constructor, it only sets some initial values for class fields. More... | |
ProjLib_ComputeApproxOnPolarSurface (const Handle< Adaptor3d_HCurve > &C, const Handle< Adaptor3d_HSurface > &S, const Standard_Real Tol=1.0e-4) | |
Constructor, which performs projecting. More... | |
ProjLib_ComputeApproxOnPolarSurface (const Handle< Adaptor2d_HCurve2d > &InitCurve2d, const Handle< Adaptor3d_HCurve > &C, const Handle< Adaptor3d_HSurface > &S, const Standard_Real Tol) | |
Constructor, which performs projecting, using initial curve 2d InitCurve2d, which is any rough approximation of result curve. Parameter Tol is 3d tolerance of approximation. More... | |
ProjLib_ComputeApproxOnPolarSurface (const Handle< Adaptor2d_HCurve2d > &InitCurve2d, const Handle< Adaptor2d_HCurve2d > &InitCurve2dBis, const Handle< Adaptor3d_HCurve > &C, const Handle< Adaptor3d_HSurface > &S, const Standard_Real Tol) | |
Constructor, which performs projecting, using two initial curves 2d: InitCurve2d and InitCurve2dBis that are any rough approximations of result curves. This constructor is used to get two pcurves for seem edge. Parameter Tol is 3d tolerance of approximation. More... | |
void | SetDegree (const Standard_Integer theDegMin, const Standard_Integer theDegMax) |
Set min and max possible degree of result BSpline curve2d, which is got by approximation. If theDegMin/Max < 0, algorithm uses values min = 2, max = 8. More... | |
void | SetMaxSegments (const Standard_Integer theMaxSegments) |
Set the parameter, which defines maximal value of parametric intervals the projected curve can be cut for approximation. If theMaxSegments < 0, algorithm uses default value = 1000. More... | |
void | SetBndPnt (const AppParCurves_Constraint theBndPnt) |
Set the parameter, which defines type of boundary condition between segments during approximation. It can be AppParCurves_PassPoint or AppParCurves_TangencyPoint. Default value is AppParCurves_TangencyPoint. More... | |
void | SetMaxDist (const Standard_Real theMaxDist) |
Set the parameter, which defines maximal possible distance between projected curve and surface. It is used only for projecting on not analytical surfaces. If theMaxDist < 0, algoritm uses default value 100.*Tolerance. If real distance between curve and surface more then theMaxDist, algorithm stops working. More... | |
void | SetTolerance (const Standard_Real theTolerance) |
Set the tolerance used to project the curve on the surface. Default value is Precision::Approximation(). More... | |
void | Perform (const Handle< Adaptor3d_HCurve > &C, const Handle< Adaptor3d_HSurface > &S) |
Method, which performs projecting, using default values of parameters or they must be set by corresponding methods before using. More... | |
Handle< Geom2d_BSplineCurve > | Perform (const Handle< Adaptor2d_HCurve2d > &InitCurve2d, const Handle< Adaptor3d_HCurve > &C, const Handle< Adaptor3d_HSurface > &S) |
Method, which performs projecting, using default values of parameters or they must be set by corresponding methods before using. Parameter InitCurve2d is any rough estimation of 2d result curve. More... | |
Handle< Adaptor2d_HCurve2d > | BuildInitialCurve2d (const Handle< Adaptor3d_HCurve > &Curve, const Handle< Adaptor3d_HSurface > &S) |
Builds initial 2d curve as BSpline with degree = 1 using Extrema algoritm. Method is used in method Perform(...). More... | |
Handle< Geom2d_BSplineCurve > | ProjectUsingInitialCurve2d (const Handle< Adaptor3d_HCurve > &Curve, const Handle< Adaptor3d_HSurface > &S, const Handle< Adaptor2d_HCurve2d > &InitCurve2d) |
Method, which performs projecting. Method is used in method Perform(...). More... | |
Handle< Geom2d_BSplineCurve > | BSpline () const |
Returns result curve 2d. More... | |
Handle< Geom2d_Curve > | Curve2d () const |
Returns second 2d curve. More... | |
Standard_Boolean | IsDone () const |
Standard_Real | Tolerance () const |
returns the reached Tolerance. More... | |
Approximate the projection of a 3d curve on an polar surface and stores the result in Approx. The result is a 2d curve. The evaluation of the current point of the 2d curve is done with the evaluation of the extrema P3d - Surface. For approximation some parameters are used, including required tolerance of approximation. Tolerance is maximal possible value of 3d deviation of 3d projection of projected curve from "exact" 3d projection. Since algorithm searches 2d curve on surface, required 2d tolerance is computed from 3d tolerance with help of U,V resolutions of surface. 3d and 2d tolerances have sence only for curves on surface, it defines precision of projecting and approximation and have nothing to do with distance between the projected curve and the surface.
ProjLib_ComputeApproxOnPolarSurface::ProjLib_ComputeApproxOnPolarSurface | ( | ) |
Empty constructor, it only sets some initial values for class fields.
ProjLib_ComputeApproxOnPolarSurface::ProjLib_ComputeApproxOnPolarSurface | ( | const Handle< Adaptor3d_HCurve > & | C, |
const Handle< Adaptor3d_HSurface > & | S, | ||
const Standard_Real | Tol = 1.0e-4 |
||
) |
Constructor, which performs projecting.
ProjLib_ComputeApproxOnPolarSurface::ProjLib_ComputeApproxOnPolarSurface | ( | const Handle< Adaptor2d_HCurve2d > & | InitCurve2d, |
const Handle< Adaptor3d_HCurve > & | C, | ||
const Handle< Adaptor3d_HSurface > & | S, | ||
const Standard_Real | Tol | ||
) |
Constructor, which performs projecting, using initial curve 2d InitCurve2d, which is any rough approximation of result curve. Parameter Tol is 3d tolerance of approximation.
ProjLib_ComputeApproxOnPolarSurface::ProjLib_ComputeApproxOnPolarSurface | ( | const Handle< Adaptor2d_HCurve2d > & | InitCurve2d, |
const Handle< Adaptor2d_HCurve2d > & | InitCurve2dBis, | ||
const Handle< Adaptor3d_HCurve > & | C, | ||
const Handle< Adaptor3d_HSurface > & | S, | ||
const Standard_Real | Tol | ||
) |
Constructor, which performs projecting, using two initial curves 2d: InitCurve2d and InitCurve2dBis that are any rough approximations of result curves. This constructor is used to get two pcurves for seem edge. Parameter Tol is 3d tolerance of approximation.
Handle< Geom2d_BSplineCurve > ProjLib_ComputeApproxOnPolarSurface::BSpline | ( | ) | const |
Returns result curve 2d.
Handle< Adaptor2d_HCurve2d > ProjLib_ComputeApproxOnPolarSurface::BuildInitialCurve2d | ( | const Handle< Adaptor3d_HCurve > & | Curve, |
const Handle< Adaptor3d_HSurface > & | S | ||
) |
Builds initial 2d curve as BSpline with degree = 1 using Extrema algoritm. Method is used in method Perform(...).
Handle< Geom2d_Curve > ProjLib_ComputeApproxOnPolarSurface::Curve2d | ( | ) | const |
Returns second 2d curve.
Standard_Boolean ProjLib_ComputeApproxOnPolarSurface::IsDone | ( | ) | const |
void ProjLib_ComputeApproxOnPolarSurface::Perform | ( | const Handle< Adaptor3d_HCurve > & | C, |
const Handle< Adaptor3d_HSurface > & | S | ||
) |
Method, which performs projecting, using default values of parameters or they must be set by corresponding methods before using.
Handle< Geom2d_BSplineCurve > ProjLib_ComputeApproxOnPolarSurface::Perform | ( | const Handle< Adaptor2d_HCurve2d > & | InitCurve2d, |
const Handle< Adaptor3d_HCurve > & | C, | ||
const Handle< Adaptor3d_HSurface > & | S | ||
) |
Method, which performs projecting, using default values of parameters or they must be set by corresponding methods before using. Parameter InitCurve2d is any rough estimation of 2d result curve.
Handle< Geom2d_BSplineCurve > ProjLib_ComputeApproxOnPolarSurface::ProjectUsingInitialCurve2d | ( | const Handle< Adaptor3d_HCurve > & | Curve, |
const Handle< Adaptor3d_HSurface > & | S, | ||
const Handle< Adaptor2d_HCurve2d > & | InitCurve2d | ||
) |
Method, which performs projecting. Method is used in method Perform(...).
void ProjLib_ComputeApproxOnPolarSurface::SetBndPnt | ( | const AppParCurves_Constraint | theBndPnt | ) |
Set the parameter, which defines type of boundary condition between segments during approximation. It can be AppParCurves_PassPoint or AppParCurves_TangencyPoint. Default value is AppParCurves_TangencyPoint.
void ProjLib_ComputeApproxOnPolarSurface::SetDegree | ( | const Standard_Integer | theDegMin, |
const Standard_Integer | theDegMax | ||
) |
Set min and max possible degree of result BSpline curve2d, which is got by approximation. If theDegMin/Max < 0, algorithm uses values min = 2, max = 8.
void ProjLib_ComputeApproxOnPolarSurface::SetMaxDist | ( | const Standard_Real | theMaxDist | ) |
Set the parameter, which defines maximal possible distance between projected curve and surface. It is used only for projecting on not analytical surfaces. If theMaxDist < 0, algoritm uses default value 100.*Tolerance. If real distance between curve and surface more then theMaxDist, algorithm stops working.
void ProjLib_ComputeApproxOnPolarSurface::SetMaxSegments | ( | const Standard_Integer | theMaxSegments | ) |
Set the parameter, which defines maximal value of parametric intervals the projected curve can be cut for approximation. If theMaxSegments < 0, algorithm uses default value = 1000.
void ProjLib_ComputeApproxOnPolarSurface::SetTolerance | ( | const Standard_Real | theTolerance | ) |
Set the tolerance used to project the curve on the surface. Default value is Precision::Approximation().
Standard_Real ProjLib_ComputeApproxOnPolarSurface::Tolerance | ( | ) | const |
returns the reached Tolerance.