0031939: Coding - correction of spelling errors in comments [part 10]
[occt.git] / src / ProjLib / ProjLib_ProjectOnSurface.hxx
CommitLineData
42cf5bc1 1// Created on: 1994-09-15
2// Created by: Bruno DUMORTIER
3// Copyright (c) 1994-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _ProjLib_ProjectOnSurface_HeaderFile
18#define _ProjLib_ProjectOnSurface_HeaderFile
19
c22b52d6 20#include <Adaptor3d_Surface.hxx>
42cf5bc1 21
c22b52d6 22class Geom_BSplineCurve;
42cf5bc1 23
24//! Project a curve on a surface. The result ( a 3D
25//! Curve) will be an approximation
26class ProjLib_ProjectOnSurface
27{
28public:
29
30 DEFINE_STANDARD_ALLOC
31
32
33 //! Create an empty projector.
34 Standard_EXPORT ProjLib_ProjectOnSurface();
35
316ea293 36 //! Create a projector normally to the surface <S>.
c22b52d6 37 Standard_EXPORT ProjLib_ProjectOnSurface(const Handle(Adaptor3d_Surface)& S);
42cf5bc1 38
e6f550da 39 Standard_EXPORT virtual ~ProjLib_ProjectOnSurface();
42cf5bc1 40
41 //! Set the Surface to <S>.
42 //! To compute the projection, you have to Load the Curve.
c22b52d6 43 Standard_EXPORT void Load (const Handle(Adaptor3d_Surface)& S);
42cf5bc1 44
45 //! Compute the projection of the curve <C> on the Surface.
c22b52d6 46 Standard_EXPORT void Load (const Handle(Adaptor3d_Curve)& C, const Standard_Real Tolerance);
42cf5bc1 47
48 Standard_EXPORT Standard_Boolean IsDone() const;
49
50 Standard_EXPORT Handle(Geom_BSplineCurve) BSpline() const;
51
52
53
54
55protected:
56
57
58
59
60
61private:
62
63
64
c22b52d6 65 Handle(Adaptor3d_Curve) myCurve;
66 Handle(Adaptor3d_Surface) mySurface;
42cf5bc1 67 Standard_Real myTolerance;
68 Standard_Boolean myIsDone;
69 Handle(Geom_BSplineCurve) myResult;
70
71
72};
73
74
75
76
77
78
79
80#endif // _ProjLib_ProjectOnSurface_HeaderFile