]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMImpl/GEOMImpl_ICurvesOperations.hxx
Salome HOME
Bug 0020029: EDF 845 GEOM: impossible to set a negative angle for the revolution...
[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 #ifndef _GEOMImpl_ICurvesOperations_HXX_
21 #define _GEOMImpl_ICurvesOperations_HXX_
22
23 #include "GEOM_IOperations.hxx"
24
25 #include <TCollection_AsciiString.hxx>
26
27 #include <list>
28
29 class GEOM_Engine;
30 class Handle(GEOM_Object);
31
32 class GEOMImpl_ICurvesOperations : public GEOM_IOperations {
33  public:
34   Standard_EXPORT GEOMImpl_ICurvesOperations(GEOM_Engine* theEngine, int theDocID);
35   Standard_EXPORT ~GEOMImpl_ICurvesOperations();
36
37   Standard_EXPORT Handle(GEOM_Object) MakePolyline (std::list<Handle(GEOM_Object)> thePoints);
38
39   Standard_EXPORT Handle(GEOM_Object) MakeCircleThreePnt (Handle(GEOM_Object) thePnt1,
40                                                           Handle(GEOM_Object) thePnt2,
41                                                           Handle(GEOM_Object) thePnt3);
42   Standard_EXPORT Handle(GEOM_Object) MakeCircleCenter2Pnt (Handle(GEOM_Object) thePnt1,
43                                                             Handle(GEOM_Object) thePnt2,
44                                                             Handle(GEOM_Object) thePnt3);
45   Standard_EXPORT Handle(GEOM_Object) MakeCirclePntVecR  (Handle(GEOM_Object) thePnt,
46                                                           Handle(GEOM_Object) theVec, double theR);
47
48   Standard_EXPORT Handle(GEOM_Object) MakeEllipse (Handle(GEOM_Object) thePnt,
49                                                    Handle(GEOM_Object) theVec,
50                                                    double theRMajor, double theRMinor);
51
52   Standard_EXPORT Handle(GEOM_Object) MakeArc (Handle(GEOM_Object) thePnt1,
53                                                Handle(GEOM_Object) thePnt2,
54                                                Handle(GEOM_Object) thePnt3);
55  
56   Standard_EXPORT Handle(GEOM_Object) MakeArcCenter (Handle(GEOM_Object) thePnt1,
57                                                      Handle(GEOM_Object) thePnt2,
58                                                      Handle(GEOM_Object) thePnt3,
59                                                      bool                theSense);
60
61   Standard_EXPORT Handle(GEOM_Object) MakeSplineBezier        (std::list<Handle(GEOM_Object)> thePoints);
62   Standard_EXPORT Handle(GEOM_Object) MakeSplineInterpolation (std::list<Handle(GEOM_Object)> thePoints);
63
64   Standard_EXPORT Handle(GEOM_Object) MakeSketcher (const char* theCommand,
65                                                     std::list<double> theWorkingPlane);
66   Standard_EXPORT Handle(GEOM_Object) MakeSketcherOnPlane (const char* theCommand,
67                                                            Handle(GEOM_Object) theWorkingPlane);
68 };
69
70 #endif