Salome HOME
Update copyrights 2014.
[modules/geom.git] / src / GEOM_I / GEOM_ITransformOperations_i.hh
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 _GEOM_ITransformOperations_i_HeaderFile
24 #define _GEOM_ITransformOperations_i_HeaderFile
25
26 #include "GEOMImpl_Gen.hxx"
27
28 #include <SALOMEconfig.h>
29
30 #include CORBA_SERVER_HEADER(GEOM_Gen)
31 #include "GEOM_IOperations_i.hh"
32 #include "GEOM_Object_i.hh"
33
34 #include "GEOMImpl_ITransformOperations.hxx"
35
36 class GEOM_I_EXPORT GEOM_ITransformOperations_i :
37     public virtual POA_GEOM::GEOM_ITransformOperations,
38     public virtual GEOM_IOperations_i
39 {
40  public:
41   GEOM_ITransformOperations_i (PortableServer::POA_ptr thePOA,
42                                GEOM::GEOM_Gen_ptr theEngine,
43                                ::GEOMImpl_ITransformOperations* theImpl);
44   ~GEOM_ITransformOperations_i();
45
46   GEOM::GEOM_Object_ptr TranslateTwoPoints (GEOM::GEOM_Object_ptr theObject,
47                                             GEOM::GEOM_Object_ptr thePoint1,
48                                             GEOM::GEOM_Object_ptr thePoint2);
49
50   GEOM::GEOM_Object_ptr TranslateTwoPointsCopy (GEOM::GEOM_Object_ptr theObject,
51                                                 GEOM::GEOM_Object_ptr thePoint1,
52                                                 GEOM::GEOM_Object_ptr thePoint2);
53
54   GEOM::GEOM_Object_ptr TranslateDXDYDZ (GEOM::GEOM_Object_ptr theObject,
55                                          CORBA::Double theDX, CORBA::Double theDY, CORBA::Double theDZ);
56
57
58   GEOM::GEOM_Object_ptr TranslateDXDYDZCopy (GEOM::GEOM_Object_ptr theObject,
59                                              CORBA::Double theDX, CORBA::Double theDY, CORBA::Double theDZ);
60
61   GEOM::GEOM_Object_ptr TranslateVector (GEOM::GEOM_Object_ptr theObject,
62                                          GEOM::GEOM_Object_ptr theVector);
63
64   GEOM::GEOM_Object_ptr TranslateVectorCopy (GEOM::GEOM_Object_ptr theObject,
65                                              GEOM::GEOM_Object_ptr theVector);
66
67   GEOM::GEOM_Object_ptr TranslateVectorDistance (GEOM::GEOM_Object_ptr theObject,
68                                                  GEOM::GEOM_Object_ptr theVector,
69                                                  CORBA::Double theDistance,
70                                                  CORBA::Boolean theCopy);
71
72   GEOM::GEOM_Object_ptr MultiTranslate1D (GEOM::GEOM_Object_ptr theObject,
73                                           GEOM::GEOM_Object_ptr theVector,
74                                           CORBA::Double theStep, CORBA::Long theNbTimes);
75
76   GEOM::GEOM_Object_ptr MultiTranslate2D (GEOM::GEOM_Object_ptr theObject,
77                                           GEOM::GEOM_Object_ptr theVector1,
78                                           CORBA::Double theStep1, CORBA::Long theNbTimes1,
79                                           GEOM::GEOM_Object_ptr theVector2,
80                                           CORBA::Double theStep2, CORBA::Long theNbTimes2);
81
82   GEOM::GEOM_Object_ptr Rotate (GEOM::GEOM_Object_ptr theObject,
83                                 GEOM::GEOM_Object_ptr theAxis,
84                                 CORBA::Double theAngle);
85
86   GEOM::GEOM_Object_ptr MultiRotate1D (GEOM::GEOM_Object_ptr theObject,
87                                        GEOM::GEOM_Object_ptr theVector,
88                                        CORBA::Long theNbTimes);
89
90   GEOM::GEOM_Object_ptr MultiRotate1DByStep (GEOM::GEOM_Object_ptr theObject,
91                                              GEOM::GEOM_Object_ptr theAxis,
92                                              CORBA::Double theAngleStep,
93                                              CORBA::Long theNbSteps);
94
95   GEOM::GEOM_Object_ptr MultiRotate2DNbTimes (GEOM::GEOM_Object_ptr theObject,
96                                               GEOM::GEOM_Object_ptr theAxis,
97                                               CORBA::Long theNbObjects,
98                                               CORBA::Double theRadialStep,
99                                               CORBA::Long theNbSteps);
100
101   GEOM::GEOM_Object_ptr MultiRotate2DByStep (GEOM::GEOM_Object_ptr theObject,
102                                              GEOM::GEOM_Object_ptr theVector,
103                                              CORBA::Double theAngle,
104                                              CORBA::Long theNbTimes1,
105                                              CORBA::Double theStep,
106                                              CORBA::Long theNbTimes2);
107
108   GEOM::GEOM_Object_ptr MultiRotate2D (GEOM::GEOM_Object_ptr theObject,
109                                        GEOM::GEOM_Object_ptr theVector,
110                                        CORBA::Double theAngle,
111                                        CORBA::Long theNbTimes1,
112                                        CORBA::Double theStep,
113                                        CORBA::Long theNbTimes2);
114
115   GEOM::GEOM_Object_ptr RotateCopy (GEOM::GEOM_Object_ptr theObject,
116                                     GEOM::GEOM_Object_ptr theAxis,
117                                     CORBA::Double theAngle);
118
119   GEOM::GEOM_Object_ptr MirrorPlane (GEOM::GEOM_Object_ptr theObject,
120                                      GEOM::GEOM_Object_ptr thePlane);
121
122   GEOM::GEOM_Object_ptr MirrorPlaneCopy (GEOM::GEOM_Object_ptr theObject,
123                                          GEOM::GEOM_Object_ptr thePlane);
124
125   GEOM::GEOM_Object_ptr MirrorAxis (GEOM::GEOM_Object_ptr theObject,
126                                     GEOM::GEOM_Object_ptr theAxis);
127
128   GEOM::GEOM_Object_ptr MirrorAxisCopy (GEOM::GEOM_Object_ptr theObject,
129                                         GEOM::GEOM_Object_ptr theAxis);
130
131   GEOM::GEOM_Object_ptr MirrorPoint (GEOM::GEOM_Object_ptr theObject,
132                                      GEOM::GEOM_Object_ptr thePoint);
133
134   GEOM::GEOM_Object_ptr MirrorPointCopy (GEOM::GEOM_Object_ptr theObject,
135                                          GEOM::GEOM_Object_ptr thePoint);
136
137   GEOM::GEOM_Object_ptr OffsetShape (GEOM::GEOM_Object_ptr theObject,
138                                      CORBA::Double theOffset);
139
140   GEOM::GEOM_Object_ptr OffsetShapeCopy (GEOM::GEOM_Object_ptr theObject,
141                                          CORBA::Double theOffset);
142
143   GEOM::GEOM_Object_ptr ProjectShapeCopy (GEOM::GEOM_Object_ptr theSource,
144                                           GEOM::GEOM_Object_ptr theTarget);
145
146   CORBA::Double ProjectPointOnWire (GEOM::GEOM_Object_ptr thePoint,
147                                     GEOM::GEOM_Object_ptr theWire,
148                                     GEOM::GEOM_Object_out thePointOnEdge,
149                                     CORBA::Long&          theEdgeInWireIndex);
150
151   GEOM::GEOM_Object_ptr ScaleShape (GEOM::GEOM_Object_ptr theObject,
152                                     GEOM::GEOM_Object_ptr thePoint,
153                                     CORBA::Double theFactor);
154
155   GEOM::GEOM_Object_ptr ScaleShapeCopy (GEOM::GEOM_Object_ptr theObject,
156                                         GEOM::GEOM_Object_ptr thePoint,
157                                         CORBA::Double theFactor);
158
159   GEOM::GEOM_Object_ptr ScaleShapeAlongAxes (GEOM::GEOM_Object_ptr theObject,
160                                              GEOM::GEOM_Object_ptr thePoint,
161                                              CORBA::Double theFactorX,
162                                              CORBA::Double theFactorY,
163                                              CORBA::Double theFactorZ);
164
165   GEOM::GEOM_Object_ptr ScaleShapeAlongAxesCopy (GEOM::GEOM_Object_ptr theObject,
166                                                  GEOM::GEOM_Object_ptr thePoint,
167                                                  CORBA::Double theFactorX,
168                                                  CORBA::Double theFactorY,
169                                                  CORBA::Double theFactorZ);
170
171   GEOM::GEOM_Object_ptr PositionShape (GEOM::GEOM_Object_ptr theObject,
172                                        GEOM::GEOM_Object_ptr theStartLCS,
173                                        GEOM::GEOM_Object_ptr theEndLCS);
174
175   GEOM::GEOM_Object_ptr PositionShapeCopy (GEOM::GEOM_Object_ptr theObject,
176                                            GEOM::GEOM_Object_ptr theStartLCS,
177                                            GEOM::GEOM_Object_ptr theEndLCS);
178
179   GEOM::GEOM_Object_ptr PositionAlongPath (GEOM::GEOM_Object_ptr theObject,
180                                            GEOM::GEOM_Object_ptr thePath,
181                                            CORBA::Double         theDistance,
182                                            CORBA::Boolean        theCopy,
183                                            CORBA::Boolean        theReverse);
184
185   GEOM::GEOM_Object_ptr RotateThreePoints (GEOM::GEOM_Object_ptr theObject,
186                                            GEOM::GEOM_Object_ptr theCentPoint,
187                                            GEOM::GEOM_Object_ptr thePoint1,
188                                            GEOM::GEOM_Object_ptr thePoint2);
189
190   GEOM::GEOM_Object_ptr RotateThreePointsCopy (GEOM::GEOM_Object_ptr theObject,
191                                                GEOM::GEOM_Object_ptr theCentPoint,
192                                                GEOM::GEOM_Object_ptr thePoint1,
193                                                GEOM::GEOM_Object_ptr thePoint2);
194
195   GEOM::GEOM_Object_ptr TransformLikeOtherCopy (GEOM::GEOM_Object_ptr theObject,
196                                                 GEOM::GEOM_Object_ptr theSample);
197
198   GEOM::GEOM_Object_ptr RecomputeObject (GEOM::GEOM_Object_ptr theObject);
199
200
201   ::GEOMImpl_ITransformOperations* GetOperations() { return (::GEOMImpl_ITransformOperations*)GetImpl(); }
202 };
203
204 #endif