]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
PostPro 2005, T1.5: 2D fields displayed in 3D. Add methods about presentation type
authoreap <eap@opencascade.com>
Tue, 3 May 2005 12:59:46 +0000 (12:59 +0000)
committereap <eap@opencascade.com>
Tue, 3 May 2005 12:59:46 +0000 (12:59 +0000)
src/VISU_I/VISU_Plot3D_i.cc
src/VISU_I/VISU_Plot3D_i.hh

index 6755db81bd210d2fac272ae20157dd4a37d3f7dd..9528e62a7d0a02431623ec29300747c0c7fa11aa 100644 (file)
@@ -137,6 +137,16 @@ CORBA::Long VISU::Plot3D_i::GetNbOfContours()
   return myPlot3DPL->GetNumberOfContours();
 }
 
+void VISU::Plot3D_i::SetContourPrs (CORBA::Boolean theIsContourPrs )
+{
+  myPlot3DPL->SetContourPrs( theIsContourPrs );
+}
+
+CORBA::Boolean VISU::Plot3D_i::GetIsContourPrs()
+{
+  return myPlot3DPL->GetIsContourPrs();
+}
+
 void VISU::Plot3D_i::DoHook()
 {
   if (!myPipeLine) myPipeLine = VISU_Plot3DPL::New();
index 02ca0f281a193b865960af59e7e48104e0b214a8..48930196bcbd5a690c37a4520d64a7f93b7fcdbd 100644 (file)
@@ -38,6 +38,9 @@ namespace VISU {
     virtual void SetScaleFactor (CORBA::Double theScaleFactor);
     virtual CORBA::Double GetScaleFactor();
 
+    virtual void SetContourPrs (CORBA::Boolean theIsContourPrs );
+    CORBA::Boolean GetIsContourPrs();
+
     virtual void SetNbOfContours (CORBA::Long theNb);
     virtual CORBA::Long GetNbOfContours();