Salome HOME
Changes for bug 0019761 from Mantis.
[modules/geom.git] / src / GEOMImpl / GEOMImpl_ITransformOperations.hxx
index e5ba8fddfabccc35531ac3ceea020dc5c2687dbf..ad2a6f510e671274a1cf6f92d6430435aed15566 100644 (file)
@@ -50,6 +50,9 @@ class GEOMImpl_ITransformOperations : public GEOM_IOperations {
   Standard_EXPORT Handle(GEOM_Object) TranslateVectorCopy (Handle(GEOM_Object) theObject,
                                            Handle(GEOM_Object) theVector);
 
+  Standard_EXPORT Handle(GEOM_Object) TranslateVectorDistance (Handle(GEOM_Object) theObject,
+                                      Handle(GEOM_Object) theVector, double theDistance, bool theCopy);
+
   Standard_EXPORT Handle(GEOM_Object) Translate1D (Handle(GEOM_Object) theObject, Handle(GEOM_Object) theVector, double theStep, Standard_Integer theNbTimes);
 
   Standard_EXPORT Handle(GEOM_Object) Translate2D (Handle(GEOM_Object) theObject, Handle(GEOM_Object) theVector, double theStep1, Standard_Integer theNbTimes1,
@@ -107,6 +110,17 @@ class GEOMImpl_ITransformOperations : public GEOM_IOperations {
                                Standard_Integer theNbTimes1,
                                double theStep, 
                                Standard_Integer theNbTimes2);
+
+  Standard_EXPORT Handle(GEOM_Object) RotateThreePoints (Handle(GEOM_Object) theObject,
+                                                        Handle(GEOM_Object) theCentPoint, 
+                                                        Handle(GEOM_Object) thePoint1,
+                                                        Handle(GEOM_Object) thePoint2);
+
+  Standard_EXPORT Handle(GEOM_Object) RotateThreePointsCopy (Handle(GEOM_Object) theObject, 
+                                                        Handle(GEOM_Object) theCentPoint, 
+                                                        Handle(GEOM_Object) thePoint1,
+                                                        Handle(GEOM_Object) thePoint2);
+
 };
 
 #endif