1 // Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #ifndef _GEOMImpl_ITransformOperations_HXX_
24 #define _GEOMImpl_ITransformOperations_HXX_
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>
32 class GEOMImpl_ITransformOperations : public GEOM_IOperations
35 Standard_EXPORT GEOMImpl_ITransformOperations(GEOM_Engine* theEngine, int theDocID);
36 Standard_EXPORT ~GEOMImpl_ITransformOperations();
38 Standard_EXPORT Handle(GEOM_Object) TranslateTwoPoints (Handle(GEOM_Object) theObject,
39 Handle(GEOM_Object) thePoint1,
40 Handle(GEOM_Object) thePoint2);
42 Standard_EXPORT Handle(GEOM_Object) TranslateTwoPointsCopy (Handle(GEOM_Object) theObject,
43 Handle(GEOM_Object) thePoint1,
44 Handle(GEOM_Object) thePoint2);
46 Standard_EXPORT Handle(GEOM_Object) TranslateDXDYDZ (Handle(GEOM_Object) theObject,
47 double theX, double theY, double theZ);
49 Standard_EXPORT Handle(GEOM_Object) TranslateDXDYDZCopy (Handle(GEOM_Object) theObject,
50 double theX, double theY, double theZ);
52 Standard_EXPORT Handle(GEOM_Object) TranslateVector (Handle(GEOM_Object) theObject,
53 Handle(GEOM_Object) theVector);
55 Standard_EXPORT Handle(GEOM_Object) TranslateVectorCopy (Handle(GEOM_Object) theObject,
56 Handle(GEOM_Object) theVector);
58 Standard_EXPORT Handle(GEOM_Object) TranslateVectorDistance (Handle(GEOM_Object) theObject,
59 Handle(GEOM_Object) theVector,
63 Standard_EXPORT Handle(GEOM_Object) Translate1D (Handle(GEOM_Object) theObject,
64 Handle(GEOM_Object) theVector,
66 Standard_Integer theNbTimes);
68 Standard_EXPORT Handle(GEOM_Object) Translate2D (Handle(GEOM_Object) theObject,
69 Handle(GEOM_Object) theVector,
71 Standard_Integer theNbTimes1,
72 Handle(GEOM_Object) theVector2,
74 Standard_Integer theNbTimes2);
76 Standard_EXPORT Handle(GEOM_Object) MirrorPlane (Handle(GEOM_Object) theObject,
77 Handle(GEOM_Object) thePlane);
79 Standard_EXPORT Handle(GEOM_Object) MirrorPlaneCopy (Handle(GEOM_Object) theObject,
80 Handle(GEOM_Object) thePlane);
82 Standard_EXPORT Handle(GEOM_Object) MirrorAxis (Handle(GEOM_Object) theObject,
83 Handle(GEOM_Object) theAxis);
85 Standard_EXPORT Handle(GEOM_Object) MirrorAxisCopy (Handle(GEOM_Object) theObject,
86 Handle(GEOM_Object) theAxis);
88 Standard_EXPORT Handle(GEOM_Object) MirrorPoint (Handle(GEOM_Object) theObject,
89 Handle(GEOM_Object) thePoint);
91 Standard_EXPORT Handle(GEOM_Object) MirrorPointCopy (Handle(GEOM_Object) theObject,
92 Handle(GEOM_Object) thePoint);
94 Standard_EXPORT Handle(GEOM_Object) OffsetShape (Handle(GEOM_Object) theObject,
97 Standard_EXPORT Handle(GEOM_Object) OffsetShapeCopy (Handle(GEOM_Object) theObject,
100 Standard_EXPORT Handle(GEOM_Object) ScaleShape (Handle(GEOM_Object) theObject,
101 Handle(GEOM_Object) thePoint,
104 Standard_EXPORT Handle(GEOM_Object) ScaleShapeCopy (Handle(GEOM_Object) theObject,
105 Handle(GEOM_Object) thePoint,
108 Standard_EXPORT Handle(GEOM_Object) ScaleShapeAlongAxes (Handle(GEOM_Object) theObject,
109 Handle(GEOM_Object) thePoint,
115 Standard_EXPORT Handle(GEOM_Object) PositionShape (Handle(GEOM_Object) theObject,
116 Handle(GEOM_Object) theStartLCS,
117 Handle(GEOM_Object) theEndLCS);
119 Standard_EXPORT Handle(GEOM_Object) PositionShapeCopy (Handle(GEOM_Object) theObject,
120 Handle(GEOM_Object) theStartLCS,
121 Handle(GEOM_Object) theEndLCS);
123 Standard_EXPORT Handle(GEOM_Object) PositionAlongPath (Handle(GEOM_Object) theObject,
124 Handle(GEOM_Object) thePath,
129 Standard_EXPORT Handle(GEOM_Object) Rotate (Handle(GEOM_Object) theObject,
130 Handle(GEOM_Object) theAxis,
133 Standard_EXPORT Handle(GEOM_Object) RotateCopy (Handle(GEOM_Object) theObject,
134 Handle(GEOM_Object) theAxis,
137 Standard_EXPORT Handle(GEOM_Object) Rotate1D (Handle(GEOM_Object) theObject,
138 Handle(GEOM_Object) theAxis,
139 Standard_Integer theNbTimes);
141 Standard_EXPORT Handle(GEOM_Object) Rotate2D (Handle(GEOM_Object) theObject,
142 Handle(GEOM_Object) theAxis,
144 Standard_Integer theNbTimes1,
146 Standard_Integer theNbTimes2);
148 Standard_EXPORT Handle(GEOM_Object) RotateThreePoints (Handle(GEOM_Object) theObject,
149 Handle(GEOM_Object) theCentPoint,
150 Handle(GEOM_Object) thePoint1,
151 Handle(GEOM_Object) thePoint2);
153 Standard_EXPORT Handle(GEOM_Object) RotateThreePointsCopy (Handle(GEOM_Object) theObject,
154 Handle(GEOM_Object) theCentPoint,
155 Handle(GEOM_Object) thePoint1,
156 Handle(GEOM_Object) thePoint2);