Salome HOME
Merge from V6_2_BR 23/12/2010
[modules/geom.git] / src / GEOMImpl / GEOMImpl_ITransformOperations.hxx
1 //  Copyright (C) 2007-2010  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 #ifndef _GEOMImpl_ITransformOperations_HXX_
23 #define _GEOMImpl_ITransformOperations_HXX_
24
25 #include "Utils_SALOME_Exception.hxx"
26 #include "GEOM_IOperations.hxx"
27 #include "GEOM_Engine.hxx"
28 #include "GEOM_Object.hxx"
29
30 #include <TDocStd_Document.hxx>
31 #include <TopoDS_Shape.hxx>
32
33 class GEOMImpl_ITranslate;
34 class GEOMImpl_IRotate;
35
36 class GEOMImpl_ITransformOperations : public GEOM_IOperations
37 {
38  public:
39   Standard_EXPORT GEOMImpl_ITransformOperations(GEOM_Engine* theEngine, int theDocID);
40   Standard_EXPORT ~GEOMImpl_ITransformOperations();
41
42   Standard_EXPORT Handle(GEOM_Object) TranslateTwoPoints (Handle(GEOM_Object) theObject,
43                                                           Handle(GEOM_Object) thePoint1,
44                                                           Handle(GEOM_Object) thePoint2);
45
46   Standard_EXPORT Handle(GEOM_Object) TranslateTwoPointsCopy (Handle(GEOM_Object) theObject,
47                                                               Handle(GEOM_Object) thePoint1,
48                                                               Handle(GEOM_Object) thePoint2);
49
50   Standard_EXPORT Handle(GEOM_Object) TranslateDXDYDZ (Handle(GEOM_Object) theObject,
51                                                        double theX, double theY,  double theZ);
52
53   Standard_EXPORT Handle(GEOM_Object) TranslateDXDYDZCopy (Handle(GEOM_Object) theObject,
54                                                            double theX, double theY,  double theZ);
55
56   Standard_EXPORT Handle(GEOM_Object) TranslateVector (Handle(GEOM_Object) theObject,
57                                                        Handle(GEOM_Object) theVector);
58
59   Standard_EXPORT Handle(GEOM_Object) TranslateVectorCopy (Handle(GEOM_Object) theObject,
60                                                            Handle(GEOM_Object) theVector);
61
62   Standard_EXPORT Handle(GEOM_Object) TranslateVectorDistance (Handle(GEOM_Object) theObject,
63                                                                Handle(GEOM_Object) theVector,
64                                                                double theDistance,
65                                                                bool theCopy);
66
67   Standard_EXPORT Handle(GEOM_Object) Translate1D (Handle(GEOM_Object) theObject,
68                                                    Handle(GEOM_Object) theVector,
69                                                    double theStep,
70                                                    Standard_Integer theNbTimes);
71
72   Standard_EXPORT Handle(GEOM_Object) Translate2D (Handle(GEOM_Object) theObject,
73                                                    Handle(GEOM_Object) theVector,
74                                                    double theStep1,
75                                                    Standard_Integer theNbTimes1,
76                                                    Handle(GEOM_Object) theVector2,
77                                                    double theStep2,
78                                                    Standard_Integer theNbTimes2);
79
80   /*
81   Standard_EXPORT static TopoDS_Shape TranslateShape1D (const TopoDS_Shape&  theShape,
82                                                         GEOMImpl_ITranslate* theTI);
83
84   Standard_EXPORT static TopoDS_Shape TranslateShape2D (const TopoDS_Shape&  theShape,
85                                                         GEOMImpl_ITranslate* theTI);
86   */
87
88   Standard_EXPORT Handle(GEOM_Object) MirrorPlane (Handle(GEOM_Object) theObject,
89                                                    Handle(GEOM_Object) thePlane);
90
91   Standard_EXPORT Handle(GEOM_Object) MirrorPlaneCopy (Handle(GEOM_Object) theObject,
92                                                        Handle(GEOM_Object) thePlane);
93
94   Standard_EXPORT Handle(GEOM_Object) MirrorAxis (Handle(GEOM_Object) theObject,
95                                                   Handle(GEOM_Object) theAxis);
96
97   Standard_EXPORT Handle(GEOM_Object) MirrorAxisCopy (Handle(GEOM_Object) theObject,
98                                                       Handle(GEOM_Object) theAxis);
99
100   Standard_EXPORT Handle(GEOM_Object) MirrorPoint (Handle(GEOM_Object) theObject,
101                                                    Handle(GEOM_Object) thePoint);
102
103   Standard_EXPORT Handle(GEOM_Object) MirrorPointCopy (Handle(GEOM_Object) theObject,
104                                                        Handle(GEOM_Object) thePoint);
105
106   Standard_EXPORT Handle(GEOM_Object) OffsetShape (Handle(GEOM_Object) theObject,
107                                                    double theOffset);
108
109   Standard_EXPORT Handle(GEOM_Object) OffsetShapeCopy (Handle(GEOM_Object) theObject,
110                                                        double theOffset);
111
112   Standard_EXPORT Handle(GEOM_Object) ScaleShape (Handle(GEOM_Object) theObject,
113                                                   Handle(GEOM_Object) thePoint,
114                                                   double theFactor);
115
116   Standard_EXPORT Handle(GEOM_Object) ScaleShapeCopy (Handle(GEOM_Object) theObject,
117                                                       Handle(GEOM_Object) thePoint,
118                                                       double theFactor);
119
120   Standard_EXPORT Handle(GEOM_Object) ScaleShapeAlongAxes (Handle(GEOM_Object) theObject,
121                                                            Handle(GEOM_Object) thePoint,
122                                                            double theFactorX,
123                                                            double theFactorY,
124                                                            double theFactorZ,
125                                                            bool doCopy);
126
127   Standard_EXPORT Handle(GEOM_Object) PositionShape (Handle(GEOM_Object) theObject,
128                                                      Handle(GEOM_Object) theStartLCS,
129                                                      Handle(GEOM_Object) theEndLCS);
130
131   Standard_EXPORT Handle(GEOM_Object) PositionShapeCopy (Handle(GEOM_Object) theObject,
132                                                          Handle(GEOM_Object) theStartLCS,
133                                                          Handle(GEOM_Object) theEndLCS);
134
135   Standard_EXPORT Handle(GEOM_Object) PositionAlongPath (Handle(GEOM_Object) theObject,
136                                                          Handle(GEOM_Object) thePath,
137                                                          double theDistance,
138                                                          bool   theCopy,
139                                                          bool   theReverse);
140
141   Standard_EXPORT Handle(GEOM_Object) Rotate (Handle(GEOM_Object) theObject,
142                                               Handle(GEOM_Object) theAxis,
143                                               double theAngle);
144
145   Standard_EXPORT Handle(GEOM_Object) RotateCopy (Handle(GEOM_Object) theObject,
146                                                   Handle(GEOM_Object) theAxis,
147                                                   double theAngle);
148
149   Standard_EXPORT Handle(GEOM_Object) Rotate1D (Handle(GEOM_Object) theObject,
150                                                 Handle(GEOM_Object) theAxis,
151                                                 Standard_Integer theNbTimes);
152
153   Standard_EXPORT Handle(GEOM_Object) Rotate2D (Handle(GEOM_Object) theObject,
154                                                 Handle(GEOM_Object) theAxis,
155                                                 double theAngle,
156                                                 Standard_Integer theNbTimes1,
157                                                 double theStep,
158                                                 Standard_Integer theNbTimes2);
159
160   Standard_EXPORT Handle(GEOM_Object) RotateThreePoints (Handle(GEOM_Object) theObject,
161                                                          Handle(GEOM_Object) theCentPoint,
162                                                          Handle(GEOM_Object) thePoint1,
163                                                          Handle(GEOM_Object) thePoint2);
164
165   Standard_EXPORT Handle(GEOM_Object) RotateThreePointsCopy (Handle(GEOM_Object) theObject,
166                                                              Handle(GEOM_Object) theCentPoint,
167                                                              Handle(GEOM_Object) thePoint1,
168                                                              Handle(GEOM_Object) thePoint2);
169
170   Standard_EXPORT Handle(GEOM_Object) TransformLikeOtherCopy (Handle(GEOM_Object) theObject,
171                                                               Handle(GEOM_Object) theSample);
172
173 };
174
175 #endif