Salome HOME
Revert "Synchronize adm files"
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IBasicOperations.hxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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_IBasicOperations_HXX_
24 #define _GEOMImpl_IBasicOperations_HXX_
25
26 #include "Utils_SALOME_Exception.hxx"
27 #include "GEOM_IOperations.hxx"
28 #include "GEOM_Engine.hxx"
29 #include "GEOM_Object.hxx"
30 #include <TDocStd_Document.hxx>
31
32 class GEOMImpl_IBasicOperations : public GEOM_IOperations {
33  public:
34   Standard_EXPORT GEOMImpl_IBasicOperations(GEOM_Engine* theEngine, int theDocID);
35   Standard_EXPORT ~GEOMImpl_IBasicOperations();
36
37   // Point
38   Standard_EXPORT Handle(GEOM_Object) MakePointXYZ (double theX, double theY, double theZ);
39
40   Standard_EXPORT Handle(GEOM_Object) MakePointWithReference (Handle(GEOM_Object) theReference,
41                                               double theX, double theY, double theZ);
42
43   Standard_EXPORT Handle(GEOM_Object) MakePointOnCurve (Handle(GEOM_Object) theCurve,
44                                                         double theParameter);
45
46   Standard_EXPORT Handle(GEOM_Object) MakePointOnCurveByLength (Handle(GEOM_Object) theCurve,
47                                                                 double              theLength,
48                                                                 Handle(GEOM_Object) theStartPoint);
49
50   Standard_EXPORT Handle(GEOM_Object) MakePointOnCurveByCoord (Handle(GEOM_Object) theCurve,
51                                                                double theXParam,
52                                                                double theYParam,
53                                                                double theZParam);
54
55   Standard_EXPORT Handle(GEOM_Object) MakePointOnLinesIntersection
56                                       (Handle(GEOM_Object) theLine1, Handle(GEOM_Object) theLine2);
57
58   Standard_EXPORT Handle(GEOM_Object) MakePointOnSurface (Handle(GEOM_Object) theSurface,
59                                                           double theUParameter,
60                                                           double theVParameter);
61
62   Standard_EXPORT Handle(GEOM_Object) MakePointOnSurfaceByCoord (Handle(GEOM_Object) theSurface,
63                                                                  double theXParam,
64                                                                  double theYParam,
65                                                                  double theZParam);
66
67   Standard_EXPORT Handle(GEOM_Object) MakePointOnFace (Handle(GEOM_Object) theFace);
68
69   // Vector
70   Standard_EXPORT Handle(GEOM_Object) MakeVectorDXDYDZ (double theDX, double theDY, double theDZ);
71
72   Standard_EXPORT Handle(GEOM_Object) MakeVectorTwoPnt (Handle(GEOM_Object) thePnt1,
73                                         Handle(GEOM_Object) thePnt2);
74
75   Standard_EXPORT Handle(GEOM_Object) MakeTangentOnCurve(const Handle(GEOM_Object)& theCurve, 
76                                                          double theParameter);
77
78   // Line
79   Standard_EXPORT Handle(GEOM_Object) MakeLineTwoPnt (Handle(GEOM_Object) thePnt1,
80                                       Handle(GEOM_Object) thePnt2);
81
82   Standard_EXPORT Handle(GEOM_Object) MakeLineTwoFaces (Handle(GEOM_Object) theFace1,
83                                       Handle(GEOM_Object) theFace2);
84
85   Standard_EXPORT Handle(GEOM_Object) MakeLine (Handle(GEOM_Object) thePnt,
86                                 Handle(GEOM_Object) theDir);
87
88   // Plane
89   Standard_EXPORT Handle(GEOM_Object) MakePlaneThreePnt (Handle(GEOM_Object) thePnt1,
90                                          Handle(GEOM_Object) thePnt2,
91                                          Handle(GEOM_Object) thePnt3,
92                                          double theSize);
93
94   Standard_EXPORT Handle(GEOM_Object) MakePlanePntVec (Handle(GEOM_Object) thePnt,
95                                        Handle(GEOM_Object) theVec,
96                                        double theSize);
97
98   Standard_EXPORT Handle(GEOM_Object) MakePlaneFace (Handle(GEOM_Object) theFace, double theSize);
99   
100   Standard_EXPORT Handle(GEOM_Object) MakePlane2Vec (Handle(GEOM_Object) theVec1,
101                                                      Handle(GEOM_Object) theVec2,
102                                                      double theSize);
103                                                      
104   Standard_EXPORT Handle(GEOM_Object) MakePlaneLCS (Handle(GEOM_Object) theFace, double theSize, int theOrientation);
105
106   // Marker
107   Standard_EXPORT Handle(GEOM_Object) MakeMarker (double theOX,  double theOY,  double theOZ,
108                                   double theXDX, double theXDY, double theXDZ,
109                                   double theYDX, double theYDY, double theYDZ);
110                                   
111   Standard_EXPORT Handle(GEOM_Object) MakeMarkerFromShape (const Handle(GEOM_Object)& theShape);
112   
113   Standard_EXPORT Handle(GEOM_Object) MakeMarkerPntTwoVec (const Handle(GEOM_Object)& theOrigin,
114                                                            const Handle(GEOM_Object)& theXVec,
115                                                            const Handle(GEOM_Object)& theYVec);
116
117   Standard_EXPORT Handle(GEOM_Object) MakeTangentPlaneOnFace(const Handle(GEOM_Object)& theFace,
118                                                              double theParamU,
119                                                              double theParamV,
120                                                              double theSize);
121
122   private:
123   // Private methods
124
125   //! Enumeration describes point position on geometric object (curve or surface)
126   //! Point location can be determined by parameter (or U, V parameters) or 3D coordinates
127   enum PointLocation
128   { 
129     PointOn_CurveByParam,
130     PointOn_CurveByCoord,
131     PointOn_CurveByLength,   
132     PointOn_SurfaceByParam,
133     PointOn_SurfaceByCoord,
134     PointOn_Face
135   };
136
137   Handle(GEOM_Object) makePointOnGeom (Handle(GEOM_Object) theGeomObj,
138                                        double theParam1,
139                                        double theParam2,
140                                        double theParam3,
141                                        const PointLocation theLocation,
142                                        Handle(GEOM_Object) theRefPoint = 0);
143 };
144
145 #endif