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