mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-19 08:50:32 +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
|
geom = 0
|
||||||
mesh = 0
|
mesh = 0
|
||||||
editor = 0
|
editor = 0
|
||||||
functors = [None] * SMESH.FT_Undefined._v
|
|
||||||
|
|
||||||
## Constructor
|
## Constructor
|
||||||
#
|
#
|
||||||
@ -1009,7 +1008,8 @@ class Mesh:
|
|||||||
if not self.geom:
|
if not self.geom:
|
||||||
self.geom = self.mesh.GetShapeToMesh()
|
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
|
# set self to algoCreator's
|
||||||
for attrName in dir(self):
|
for attrName in dir(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user