From: raza Date: Wed, 4 Apr 2007 15:45:23 +0000 (+0000) Subject: update __init__ function of Mesh_Triangle class X-Git-Tag: V4_0~18 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=eeccdfb1ef68d164a40052de06d9def6cd2c7aef update __init__ function of Mesh_Triangle class --- diff --git a/src/SMESH_SWIG/smesh.py b/src/SMESH_SWIG/smesh.py index 3bf840eb9..ce9b65b2b 100644 --- a/src/SMESH_SWIG/smesh.py +++ b/src/SMESH_SWIG/smesh.py @@ -576,16 +576,17 @@ class Mesh_Triangle(Mesh_Algorithm): ## Private constructor. def __init__(self, mesh, algoType, geom=0): + self.algoType = algoType if algoType == MEFISTO: self.Create(mesh, geom, "MEFISTO_2D") elif algoType == BLSURF: import BLSURFPlugin self.Create(mesh, geom, "BLSURF", "libBLSURFEngine.so") + self.SetPhysicalMesh() elif algoType == NETGEN: if noNETGENPlugin: print "Warning: NETGENPlugin module has not been imported." self.Create(mesh, geom, "NETGEN_2D", "libNETGENEngine.so") - self.algoType = algoType ## Define "MaxElementArea" hypothesis to give the maximun area of each triangles # @param area for the maximum area of each triangles