mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-19 06:40:37 +05:00
regression imps/H8
Make Mesh.functors be not shared by all Mesh'es
This commit is contained in:
parent
61d724e337
commit
68e80dd97f
@ -963,7 +963,6 @@ class Mesh:
|
||||
geom = 0
|
||||
mesh = 0
|
||||
editor = 0
|
||||
functors = [None] * SMESH.FT_Undefined._v
|
||||
|
||||
## Constructor
|
||||
#
|
||||
@ -1009,7 +1008,8 @@ class Mesh:
|
||||
if not self.geom:
|
||||
self.geom = self.mesh.GetShapeToMesh()
|
||||
|
||||
self.editor = self.mesh.GetMeshEditor()
|
||||
self.editor = self.mesh.GetMeshEditor()
|
||||
self.functors = [None] * SMESH.FT_Undefined._v
|
||||
|
||||
# set self to algoCreator's
|
||||
for attrName in dir(self):
|
||||
|
Loading…
Reference in New Issue
Block a user