Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / src / GEOMImpl / GEOMImpl_ICurvesOperations.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 using namespace std;
21
22 #ifndef _GEOMImpl_ICurvesOperations_HXX_
23 #define _GEOMImpl_ICurvesOperations_HXX_
24
25 #include "GEOM_IOperations.hxx"
26
27 #include <TCollection_AsciiString.hxx>
28
29 #include <list>
30
31 class GEOM_Engine;
32 class Handle(GEOM_Object);
33
34 class GEOMImpl_ICurvesOperations : public GEOM_IOperations {
35  public:
36   Standard_EXPORT GEOMImpl_ICurvesOperations(GEOM_Engine* theEngine, int theDocID);
37   Standard_EXPORT ~GEOMImpl_ICurvesOperations();
38
39   Standard_EXPORT Handle(GEOM_Object) MakePolyline (list<Handle(GEOM_Object)> thePoints);
40
41   Standard_EXPORT Handle(GEOM_Object) MakeCircleThreePnt (Handle(GEOM_Object) thePnt1,
42                                                           Handle(GEOM_Object) thePnt2,
43                                                           Handle(GEOM_Object) thePnt3);
44   Standard_EXPORT Handle(GEOM_Object) MakeCircleCenter2Pnt (Handle(GEOM_Object) thePnt1,
45                                                             Handle(GEOM_Object) thePnt2,
46                                                             Handle(GEOM_Object) thePnt3);
47   Standard_EXPORT Handle(GEOM_Object) MakeCirclePntVecR  (Handle(GEOM_Object) thePnt,
48                                                           Handle(GEOM_Object) theVec, double theR);
49
50   Standard_EXPORT Handle(GEOM_Object) MakeEllipse (Handle(GEOM_Object) thePnt,
51                                                    Handle(GEOM_Object) theVec,
52                                                    double theRMajor, double theRMinor);
53
54   Standard_EXPORT Handle(GEOM_Object) MakeArc (Handle(GEOM_Object) thePnt1,
55                                                Handle(GEOM_Object) thePnt2,
56                                                Handle(GEOM_Object) thePnt3);
57  
58   Standard_EXPORT Handle(GEOM_Object) MakeArcCenter (Handle(GEOM_Object) thePnt1,
59                                                      Handle(GEOM_Object) thePnt2,
60                                                      Handle(GEOM_Object) thePnt3,
61                                                      bool                theSense);
62
63   Standard_EXPORT Handle(GEOM_Object) MakeSplineBezier        (list<Handle(GEOM_Object)> thePoints);
64   Standard_EXPORT Handle(GEOM_Object) MakeSplineInterpolation (list<Handle(GEOM_Object)> thePoints);
65
66   Standard_EXPORT Handle(GEOM_Object) MakeSketcher (const TCollection_AsciiString& theCommand,
67                                                     list<double> theWorkingPlane);
68   Standard_EXPORT Handle(GEOM_Object) MakeSketcherOnPlane (const TCollection_AsciiString& theCommand,
69                                                            Handle(GEOM_Object) theWorkingPlane);
70 };
71
72 #endif