From: jfa Date: Mon, 18 Feb 2008 08:03:37 +0000 (+0000) Subject: NPAL18773: update SMESH TUI docs. X-Git-Tag: V4_1_1~8 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=8afe14fa39ed0d2db6cb539f5faa95ceab4c6406;p=modules%2Fsmesh.git NPAL18773: update SMESH TUI docs. --- diff --git a/src/SMESH_SWIG/smeshDC.py b/src/SMESH_SWIG/smeshDC.py index 5aeb79300..266473c88 100644 --- a/src/SMESH_SWIG/smeshDC.py +++ b/src/SMESH_SWIG/smeshDC.py @@ -610,16 +610,16 @@ class Mesh: ## Creates a triangle 2D algorithm for faces. # If the optional \a geom parameter is not sets, this algorithm is global. # \n Otherwise, this algorithm define a submesh based on \a geom subshape. - # @param algo values are: smesh.MEFISTO || smesh.NETGEN_1D2D || smesh.NETGEN_2D + # @param algo values are: smesh.MEFISTO || smesh.NETGEN_1D2D || smesh.NETGEN_2D || smesh.BLSURF # @param geom If defined, subshape to be meshed (GEOM_Object) # @return an instance of Mesh_Triangle algorithm def Triangle(self, algo=MEFISTO, geom=0): ## if Triangle(geom) is called by mistake - if ( isinstance( algo, geompyDC.GEOM._objref_GEOM_Object)): + if (isinstance(algo, geompyDC.GEOM._objref_GEOM_Object)): geom = algo algo = MEFISTO - return Mesh_Triangle(self, algo, geom) + return Mesh_Triangle(self, algo, geom) ## Creates a quadrangle 2D algorithm for faces. # If the optional \a geom parameter is not sets, this algorithm is global. @@ -647,6 +647,7 @@ class Mesh: ## Creates a hexahedron 3D algorithm for solids. # If the optional \a geom parameter is not sets, this algorithm is global. # \n Otherwise, this algorithm define a submesh based on \a geom subshape. + # @param algo possible values are: smesh.Hexa, smesh.Hexotic # @param geom If defined, subshape to be meshed (GEOM_Object) # @return an instance of Mesh_Hexahedron algorithm def Hexahedron(self, algo=Hexa, geom=0):