mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-28 18:30:35 +05:00
Remove NETGEN explicit usage from AutomaticTetrahedralization()
This commit is contained in:
parent
7b2a4147d2
commit
d027cf5b2b
@ -1520,7 +1520,7 @@ class Mesh:
|
|||||||
smeshgui.SetMeshIcon( salome.ObjectToID( self.mesh ), False, True )
|
smeshgui.SetMeshIcon( salome.ObjectToID( self.mesh ), False, True )
|
||||||
salome.sg.updateObjBrowser(1)
|
salome.sg.updateObjBrowser(1)
|
||||||
|
|
||||||
## Computes a tetrahedral mesh using AutomaticLength + MEFISTO + NETGEN
|
## Computes a tetrahedral mesh using AutomaticLength + MEFISTO + Tetrahedron
|
||||||
# @param fineness [0.0,1.0] defines mesh fineness
|
# @param fineness [0.0,1.0] defines mesh fineness
|
||||||
# @return True or False
|
# @return True or False
|
||||||
# @ingroup l3_algos_basic
|
# @ingroup l3_algos_basic
|
||||||
@ -1533,8 +1533,7 @@ class Mesh:
|
|||||||
self.Triangle().LengthFromEdges()
|
self.Triangle().LengthFromEdges()
|
||||||
pass
|
pass
|
||||||
if dim > 2 :
|
if dim > 2 :
|
||||||
from salome.NETGENPlugin.NETGENPluginBuilder import NETGEN
|
self.Tetrahedron()
|
||||||
self.Tetrahedron(NETGEN)
|
|
||||||
pass
|
pass
|
||||||
return self.Compute()
|
return self.Compute()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user