]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/PythonAddons/macros/compoundVertices/feature.py
Salome HOME
Update for macros NGO
[modules/shaper.git] / src / PythonAddons / macros / compoundVertices / feature.py
index 492594c4ae9eeec0d028f93159e55c388e70f570..d089f743431c41396bd2b66b4b18165a69898092 100644 (file)
@@ -83,8 +83,8 @@ class compoundVertices(model.Feature):
                         return
                     x = float(coord[0]); y = float(coord[1]); z = float(coord[2]);
                     point = model.addPoint(part, x,y,z); point.execute(True); self.lfeatures.append(point)
-                    vertex = model.addVertex(part, [point.result()]); vertex.execute(True); self.lfeatures.append(vertex)
-                    lVertices.append(vertex.result())
+                    #vertex = model.addVertex(part, [point.result()]); vertex.execute(True); self.lfeatures.append(vertex)
+                    lVertices.append(point.result())
                 file.close()
                 compound = model.addCompound(part, lVertices)
                 compound.execute(True); self.lfeatures.append(compound)