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