Salome HOME
e8cce269039085bb907657c4ba9ae13741eaecbc
[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
23 #ifndef _GEOMImpl_ICurvesOperations_HXX_
24 #define _GEOMImpl_ICurvesOperations_HXX_
25
26 #include "GEOM_IOperations.hxx"
27
28 #include <TCollection_AsciiString.hxx>
29
30 #include <list>
31
32 class GEOM_Engine;
33 class Handle(GEOM_Object);
34
35 class GEOMImpl_ICurvesOperations : public GEOM_IOperations {
36  public:
37   Standard_EXPORT GEOMImpl_ICurvesOperations(GEOM_Engine* theEngine, int theDocID);
38   Standard_EXPORT ~GEOMImpl_ICurvesOperations();
39
40   Standard_EXPORT Handle(GEOM_Object) MakePolyline (list<Handle(GEOM_Object)> thePoints);
41
42   Standard_EXPORT Handle(GEOM_Object) MakeCircleThreePnt (Handle(GEOM_Object) thePnt1,
43                                                           Handle(GEOM_Object) thePnt2,
44                                                           Handle(GEOM_Object) thePnt3);
45   Standard_EXPORT Handle(GEOM_Object) MakeCircleCenter2Pnt (Handle(GEOM_Object) thePnt1,
46                                                             Handle(GEOM_Object) thePnt2,
47                                                             Handle(GEOM_Object) thePnt3);
48   Standard_EXPORT Handle(GEOM_Object) MakeCirclePntVecR  (Handle(GEOM_Object) thePnt,
49                                                           Handle(GEOM_Object) theVec, double theR);
50
51   Standard_EXPORT Handle(GEOM_Object) MakeEllipse (Handle(GEOM_Object) thePnt,
52                                                    Handle(GEOM_Object) theVec,
53                                                    double theRMajor, double theRMinor,
54                                                    Handle(GEOM_Object) theVecMaj);
55
56   Standard_EXPORT Handle(GEOM_Object) MakeArc (Handle(GEOM_Object) thePnt1,
57                                                Handle(GEOM_Object) thePnt2,
58                                                Handle(GEOM_Object) thePnt3);
59  
60   Standard_EXPORT Handle(GEOM_Object) MakeArcCenter (Handle(GEOM_Object) thePnt1,
61                                                      Handle(GEOM_Object) thePnt2,
62                                                      Handle(GEOM_Object) thePnt3,
63                                                      bool                theSense);
64
65   Standard_EXPORT Handle(GEOM_Object) MakeArcOfEllipse (Handle(GEOM_Object) thePnt1,
66                                                         Handle(GEOM_Object) thePnt2,
67                                                         Handle(GEOM_Object) thePnt3);
68
69   Standard_EXPORT Handle(GEOM_Object) MakeSplineBezier        (std::list<Handle(GEOM_Object)> thePoints);
70   Standard_EXPORT Handle(GEOM_Object) MakeSplineInterpolation (std::list<Handle(GEOM_Object)> thePoints,
71                                                                bool                      theIsClosed = false);
72
73   Standard_EXPORT Handle(GEOM_Object) MakeSketcher (const char* theCommand,
74                                                     std::list<double> theWorkingPlane);
75   Standard_EXPORT Handle(GEOM_Object) Make3DSketcher (std::list<double> theCoordinates);
76   Standard_EXPORT Handle(GEOM_Object) MakeSketcherOnPlane (const char* theCommand,
77                                                            Handle(GEOM_Object) theWorkingPlane);
78 };
79
80 #endif