Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / GEOM_I / GEOM_ITransformOperations_i.hh
1 // Copyright (C) 2007-2012  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 _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 MultiRotate2D (GEOM::GEOM_Object_ptr theObject,
91                                        GEOM::GEOM_Object_ptr theVector, 
92                                        CORBA::Double theAngle, 
93                                        CORBA::Long theNbTimes1, 
94                                        CORBA::Double theStep, 
95                                        CORBA::Long theNbTimes2);
96                                            
97   GEOM::GEOM_Object_ptr RotateCopy (GEOM::GEOM_Object_ptr theObject,
98                                     GEOM::GEOM_Object_ptr theAxis,
99                                     CORBA::Double theAngle);  
100
101   GEOM::GEOM_Object_ptr MirrorPlane (GEOM::GEOM_Object_ptr theObject,
102                                      GEOM::GEOM_Object_ptr thePlane);
103
104   GEOM::GEOM_Object_ptr MirrorPlaneCopy (GEOM::GEOM_Object_ptr theObject,
105                                          GEOM::GEOM_Object_ptr thePlane);
106
107   GEOM::GEOM_Object_ptr MirrorAxis (GEOM::GEOM_Object_ptr theObject,
108                                     GEOM::GEOM_Object_ptr theAxis);
109
110   GEOM::GEOM_Object_ptr MirrorAxisCopy (GEOM::GEOM_Object_ptr theObject,
111                                         GEOM::GEOM_Object_ptr theAxis);
112
113   GEOM::GEOM_Object_ptr MirrorPoint (GEOM::GEOM_Object_ptr theObject,
114                                      GEOM::GEOM_Object_ptr thePoint);
115
116   GEOM::GEOM_Object_ptr MirrorPointCopy (GEOM::GEOM_Object_ptr theObject,
117                                          GEOM::GEOM_Object_ptr thePoint);
118
119   GEOM::GEOM_Object_ptr OffsetShape (GEOM::GEOM_Object_ptr theObject,
120                                      CORBA::Double theOffset);
121
122   GEOM::GEOM_Object_ptr OffsetShapeCopy (GEOM::GEOM_Object_ptr theObject,
123                                          CORBA::Double theOffset);
124
125   GEOM::GEOM_Object_ptr ProjectShapeCopy (GEOM::GEOM_Object_ptr theSource,
126                                           GEOM::GEOM_Object_ptr theTarget);
127
128   GEOM::GEOM_Object_ptr ScaleShape (GEOM::GEOM_Object_ptr theObject,
129                                     GEOM::GEOM_Object_ptr thePoint,
130                                     CORBA::Double theFactor);
131
132   GEOM::GEOM_Object_ptr ScaleShapeCopy (GEOM::GEOM_Object_ptr theObject,
133                                         GEOM::GEOM_Object_ptr thePoint,
134                                         CORBA::Double theFactor);
135
136   GEOM::GEOM_Object_ptr ScaleShapeAlongAxes (GEOM::GEOM_Object_ptr theObject,
137                                              GEOM::GEOM_Object_ptr thePoint,
138                                              CORBA::Double theFactorX,
139                                              CORBA::Double theFactorY,
140                                              CORBA::Double theFactorZ);
141
142   GEOM::GEOM_Object_ptr ScaleShapeAlongAxesCopy (GEOM::GEOM_Object_ptr theObject,
143                                                  GEOM::GEOM_Object_ptr thePoint,
144                                                  CORBA::Double theFactorX,
145                                                  CORBA::Double theFactorY,
146                                                  CORBA::Double theFactorZ);
147
148   GEOM::GEOM_Object_ptr PositionShape (GEOM::GEOM_Object_ptr theObject,
149                                        GEOM::GEOM_Object_ptr theStartLCS,
150                                        GEOM::GEOM_Object_ptr theEndLCS);
151
152   GEOM::GEOM_Object_ptr PositionShapeCopy (GEOM::GEOM_Object_ptr theObject,
153                                            GEOM::GEOM_Object_ptr theStartLCS,
154                                            GEOM::GEOM_Object_ptr theEndLCS);
155
156   GEOM::GEOM_Object_ptr PositionAlongPath (GEOM::GEOM_Object_ptr theObject,
157                                            GEOM::GEOM_Object_ptr thePath,
158                                            CORBA::Double         theDistance,
159                                            CORBA::Boolean        theCopy,
160                                            CORBA::Boolean        theReverse);
161
162   GEOM::GEOM_Object_ptr RotateThreePoints (GEOM::GEOM_Object_ptr theObject,
163                                            GEOM::GEOM_Object_ptr theCentPoint,
164                                            GEOM::GEOM_Object_ptr thePoint1,
165                                            GEOM::GEOM_Object_ptr thePoint2);
166
167   GEOM::GEOM_Object_ptr RotateThreePointsCopy (GEOM::GEOM_Object_ptr theObject,
168                                                GEOM::GEOM_Object_ptr theCentPoint,
169                                                GEOM::GEOM_Object_ptr thePoint1,
170                                                GEOM::GEOM_Object_ptr thePoint2);
171
172   GEOM::GEOM_Object_ptr TransformLikeOtherCopy (GEOM::GEOM_Object_ptr theObject,
173                                                 GEOM::GEOM_Object_ptr theSample);
174
175   GEOM::GEOM_Object_ptr RecomputeObject (GEOM::GEOM_Object_ptr theObject);
176
177
178   ::GEOMImpl_ITransformOperations* GetOperations() { return (::GEOMImpl_ITransformOperations*)GetImpl(); }
179 };
180
181 #endif