Salome HOME
Merge branch 'V8_3_BR' into ngr/python3_dev
[modules/smesh.git] / src / Tools / blocFissure / gmu / compoundFromList.py
index 6787b252045ac7e9f60cde6889a320b04165c79b..ac89a0e7d6f0274c3b499bff63a52770c7493155 100644 (file)
@@ -1,7 +1,10 @@
 # -*- coding: utf-8 -*-
 
 import logging
-from geomsmesh import geompy
+from .geomsmesh import geompy
+from .geomsmesh import geomPublish
+from .geomsmesh import geomPublishInFather
+from . import initLog
 
 def compoundFromList(elements, nom=None):
   """
@@ -19,13 +22,14 @@ def compoundFromList(elements, nom=None):
       
   if nom is not None:
     for i,a in enumerate(shapeList):
-      nom = nom +"%d"%i
-      logging.debug('nom: %s',nom)
-      geompy.addToStudy(a, nom)
+      nomi = nom +"%d"%i
+      logging.debug('nom: %s',nomi)
+      geomPublish(initLog.debug, a, nomi)
 
   shapeCompound = None
   if len(shapeList) > 0:
     shapeCompound =geompy.MakeCompound(shapeList)
-
+    nomc = "compound_%s"%nom
+    geomPublish(initLog.debug, shapeCompound, nomc)
   return shapeCompound