mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-26 14:50:33 +05:00
23111: [CEA 1541] copy.deepcopy does not work on an objet of type Mesh
This commit is contained in:
parent
b22e182dd1
commit
ff644361c8
@ -4773,8 +4773,11 @@ class meshEditor(SMESH._objref_SMESH_MeshEditor):
|
||||
return getattr( self.mesh, name )
|
||||
if name == "ExtrusionAlongPathObjX":
|
||||
return getattr( self.mesh, "ExtrusionAlongPathX" )
|
||||
print name, "NOT FOUND"
|
||||
print name, "meshEditor: attribute '%s' NOT FOUND" % name
|
||||
return None
|
||||
def __deepcopy__(self, memo=None):
|
||||
new = self.__class__()
|
||||
return new
|
||||
pass
|
||||
omniORB.registerObjref(SMESH._objref_SMESH_MeshEditor._NP_RepositoryId, meshEditor)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user