]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Improve scripts; temporarily comment some lines due to bug 10000.
authorjfa <jfa@opencascade.com>
Mon, 12 Dec 2005 10:12:42 +0000 (10:12 +0000)
committerjfa <jfa@opencascade.com>
Mon, 12 Dec 2005 10:12:42 +0000 (10:12 +0000)
src/VISU_SWIG/VISU_Example_01.py
src/VISU_SWIG/VISU_Example_02.py
src/VISU_SWIG/VISU_Example_04.py
src/VISU_SWIG/VISU_Example_06.py

index 822285440ea6958effe09e590d75a183b4583023..d8c19b65f00c0ba10e3fa9f71e2a975b7c2d34f9 100644 (file)
@@ -82,11 +82,16 @@ myView.DisplayOnly(cutplanes)
 
 #%====================Stage4: Opening a new study and Med file import====================%
 
-print "**** Stage4: Opening a new study and Med file import"
+# Opening a new study tempoparily commented due to a problem
+# with python initialization. To be restored after bug 10000 fixing.
 
-print "Creating a new study..................", 
-newStudy = salome.myStudyManager.NewStudy('newStudy')
-myVisu.SetCurrentStudy(newStudy)
+#print "**** Stage4: Opening a new study and Med file import"
+print "**** Stage4: Med file import"
+
+#print "Creating a new study..................", 
+#newStudy = salome.myStudyManager.NewStudy('newStudy')
+newStudy = salome.myStudy # temporarily
+#myVisu.SetCurrentStudy(newStudy)
 myViewManager = myVisu.GetViewManager()
 myView = myViewManager.Create3DView()
 if myView is None : print "Error"
index be71fa7693cf4df3af95ec39fb38da72b9e84dd1..38f2b6b6099ac26e04f76c6d81661222227bbe08 100644 (file)
@@ -222,28 +222,37 @@ file = str+'/VISU_005.hdf'
 
 salome.myStudyManager.SaveAs(file, salome.myStudy, 0)
 study_id = salome.myStudy._get_StudyId()
-#salome.sg.CloseStudy(study_id)
-#salome.myStudyManager.Close(salome.myStudy)
-#salome.myStudy.Close()
 print "OK"
 
-print "Opening just saved study..............",
+file_new = str+'/VISU_005_new.hdf'
+command = "mv " + file + " " + file_new
+os.system(command)
+file = file_new
 
-openedStudy = salome.myStudyManager.Open(file)
-myVisu.SetCurrentStudy(openedStudy)
+# Opening a study tempoparily commented due to a problem
+# with python initialization. To be restored after bug 10000 fixing.
+
+#print "Opening just saved study..............",
+#
+#openedStudy = salome.myStudyManager.Open(file)]
+openedStudy = salome.myStudy # temporarily
+#myVisu.SetCurrentStudy(openedStudy)
 myViewManager = myVisu.GetViewManager()
 myView1 = myViewManager.Create3DView()
 if myView1 is None : print "Error"
 else : print "OK"
 
+import time
+time.sleep(1)
+
 print "Restoring first view parameters.......",
 aRestoreRes = myView1.RestoreViewParams(aViewParamsName1)
 if aRestoreRes != 1 : print "Error"
 else : print "OK"
 
 Builder = openedStudy.NewBuilder()
-SCom = openedStudy.FindComponent("VISU")
-Builder.LoadWith(SCom ,myVisu)
+#SCom = openedStudy.FindComponent("VISU")
+#Builder.LoadWith(SCom ,myVisu)
 
 print "Displaying Scalar Map.................",
 SObj = openedStudy.FindObject('ScalarMap')
@@ -346,3 +355,6 @@ aRestoreRes = myView1.RestoreViewParams(aViewParamsName2)
 if aRestoreRes != 1 : print "Error"
 else : print "OK"
 
+# Remove the study file
+command = "rm -r " + file
+os.system(command)
index a50a831a93e62bbdf8e7d1ba9c187ec69af477c2..9ae4d1101401999828c4199f503477bdede62929 100644 (file)
@@ -46,7 +46,7 @@ aMeshName ="LE VOLUME"
 anEntity = VISU.NODE
 aTimeStampId = 1
 
-medFile = os.getenv('DATA_DIR') + '/MedFIles/' + medFile
+medFile = os.getenv('DATA_DIR') + '/MedFiles/' + medFile
 myResult = myVisu.ImportFile(medFile)
 
 myView = myViewManager.Create3DView();
index f31b80e40e19aa0aaadb610b23fa95bc6304f6d4..622b6cb4621d6b21274b70268062f3430c3ea234 100644 (file)
@@ -4,7 +4,7 @@ import salome
 import math
 import SALOMEDS
 import VISU
-#from visu_gui import *
+from visu_gui import *
 
 # >>> Getting study builder ==================================================
 myStudy = salome.myStudy