]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Introduce Set/Get Offset function in Prs3d
authorvsv <vsv@opencascade.com>
Tue, 17 May 2005 11:27:35 +0000 (11:27 +0000)
committervsv <vsv@opencascade.com>
Tue, 17 May 2005 11:27:35 +0000 (11:27 +0000)
src/VISU_I/VISU_Prs3d_i.cc
src/VISU_I/VISU_Prs3d_i.hh

index 2711fb599ffc60465408d2b4503863477e20fa28..45c01285c8231069ea1534202ac863b3d26b1e82 100644 (file)
@@ -194,3 +194,9 @@ void VISU::Prs3d_i::GetOffset(float* theOffsets)
   theOffsets[1] = myOffset[1];
   theOffsets[2] = myOffset[2];
 }
+void VISU::Prs3d_i::GetOffset(float& theDx, float& theDy, float& theDz)
+{
+  theDx = myOffset[0];
+  theDy = myOffset[1];
+  theDz = myOffset[2];
+}
index 136a6e4e75fb2fd160c44b7a28a685afaa948f34..135d9621d3a567ba88305a041374925b2616b61d 100644 (file)
@@ -78,9 +78,10 @@ namespace VISU{
     void GetBounds(float aBounds[6]);
 
     void SetOffset(const float* theOffsets);
-    void SetOffset(float theDx, float theDy, float theDz);
+    virtual void SetOffset(float theDx, float theDy, float theDz);
 
     void GetOffset(float* theOffsets);
+    virtual void GetOffset(float& theDx, float& theDy, float& theDz);
 
     virtual const char* GetComment() const = 0;
     virtual QString GenerateName() = 0;