1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0032353: Modeling Data - Missing definition of ProjLib_ProjectOnSurface::Load()

This commit is contained in:
kgv 2021-05-11 10:20:42 +03:00 committed by bugmaster
parent c1ce84dcb3
commit 4d67a36952
2 changed files with 23 additions and 39 deletions

View File

@ -14,6 +14,7 @@
// Alternatively, this file may be used under the terms of Open CASCADE // Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement. // commercial license or contractual agreement.
#include <ProjLib_ProjectOnSurface.hxx>
#include <Adaptor3d_Curve.hxx> #include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx> #include <Adaptor3d_Surface.hxx>
@ -26,7 +27,6 @@
#include <Geom_BSplineCurve.hxx> #include <Geom_BSplineCurve.hxx>
#include <PLib.hxx> #include <PLib.hxx>
#include <Precision.hxx> #include <Precision.hxx>
#include <ProjLib_ProjectOnSurface.hxx>
#include <Standard_NoSuchObject.hxx> #include <Standard_NoSuchObject.hxx>
#include <TColgp_Array1OfPnt.hxx> #include <TColgp_Array1OfPnt.hxx>
#include <TColStd_Array1OfInteger.hxx> #include <TColStd_Array1OfInteger.hxx>
@ -156,7 +156,6 @@ myIsDone(Standard_False)
//function : ProjLib_ProjectOnSurface //function : ProjLib_ProjectOnSurface
//purpose : //purpose :
//======================================================================= //=======================================================================
ProjLib_ProjectOnSurface::ProjLib_ProjectOnSurface ProjLib_ProjectOnSurface::ProjLib_ProjectOnSurface
(const Handle(Adaptor3d_Surface)& S ) : (const Handle(Adaptor3d_Surface)& S ) :
myTolerance(0.0), myTolerance(0.0),
@ -165,6 +164,20 @@ myIsDone(Standard_False)
mySurface = S; mySurface = S;
} }
//=======================================================================
//function : Load
//purpose :
//=======================================================================
void ProjLib_ProjectOnSurface::Load (const Handle(Adaptor3d_Surface)& S)
{
mySurface = S;
myIsDone = Standard_False;
}
//=======================================================================
//function : Load
//purpose :
//=======================================================================
void ProjLib_ProjectOnSurface::Load(const Handle(Adaptor3d_Curve)& C, void ProjLib_ProjectOnSurface::Load(const Handle(Adaptor3d_Curve)& C,
const Standard_Real Tolerance) const Standard_Real Tolerance)
{ {
@ -268,13 +281,3 @@ Handle(Geom_BSplineCurve) ProjLib_ProjectOnSurface::BSpline() const
"ProjLib_ProjectOnSurface:BSpline"); "ProjLib_ProjectOnSurface:BSpline");
return myResult ; return myResult ;
} }
//=======================================================================
//function : IsDone
//purpose :
//=======================================================================
Standard_Boolean ProjLib_ProjectOnSurface::IsDone() const
{
return myIsDone;
}

View File

@ -29,7 +29,6 @@ public:
DEFINE_STANDARD_ALLOC DEFINE_STANDARD_ALLOC
//! Create an empty projector. //! Create an empty projector.
Standard_EXPORT ProjLib_ProjectOnSurface(); Standard_EXPORT ProjLib_ProjectOnSurface();
@ -45,36 +44,18 @@ public:
//! Compute the projection of the curve <C> on the Surface. //! Compute the projection of the curve <C> on the Surface.
Standard_EXPORT void Load (const Handle(Adaptor3d_Curve)& C, const Standard_Real Tolerance); Standard_EXPORT void Load (const Handle(Adaptor3d_Curve)& C, const Standard_Real Tolerance);
Standard_EXPORT Standard_Boolean IsDone() const; Standard_Boolean IsDone() const { return myIsDone; }
Standard_EXPORT Handle(Geom_BSplineCurve) BSpline() const; Standard_EXPORT Handle(Geom_BSplineCurve) BSpline() const;
protected:
private: private:
Handle(Adaptor3d_Curve) myCurve; Handle(Adaptor3d_Curve) myCurve;
Handle(Adaptor3d_Surface) mySurface; Handle(Adaptor3d_Surface) mySurface;
Standard_Real myTolerance; Standard_Real myTolerance;
Standard_Boolean myIsDone; Standard_Boolean myIsDone;
Handle(Geom_BSplineCurve) myResult; Handle(Geom_BSplineCurve) myResult;
}; };
#endif // _ProjLib_ProjectOnSurface_HeaderFile #endif // _ProjLib_ProjectOnSurface_HeaderFile