Salome HOME
activateModule/deactivateModule functions are made "bool".
[modules/smesh.git] / src / SMESH_SWIG / SMESH_GroupLyingOnGeom.py
index 0df585ed81f50b06bba1149dee21b2f824d37a68..26097adb8ba00f58c01cd6ea08fd4ce90c699e4b 100644 (file)
@@ -1,9 +1,7 @@
-import SMESH
+from meshpy import *
 
 def BuildGroupLyingOn(theMesh, theElemType, theName, theShape):
-    aMeshGen = salome.lcc.FindOrLoadComponent("FactoryServer", "SMESH")
-
-    aFilterMgr = aMeshGen.CreateFilterManager()
+    aFilterMgr = smesh.CreateFilterManager()
     aFilter = aFilterMgr.CreateFilter()
    
     aLyingOnGeom = aFilterMgr.CreateLyingOnGeom()
@@ -17,9 +15,9 @@ def BuildGroupLyingOn(theMesh, theElemType, theName, theShape):
     aGroup.Add(anIds)
 
 #Example
-from SMESH_test1 import *
+## from SMESH_test1 import *
 
-smesh.Compute(mesh, box)
-BuildGroupLyingOn(mesh, SMESH.FACE, "Group of faces lying on edge", edge )
+## smesh.Compute(mesh, box)
+## BuildGroupLyingOn(mesh, SMESH.FACE, "Group of faces lying on edge", edge )
 
-salome.sg.updateObjBrowser(1);
+## salome.sg.updateObjBrowser(1);