mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 18:18:34 +05:00
0020727: EDF 1276 SMESH : add a Method RadialQuadrangle to the Mesh class in smeshDC.py
This commit is contained in:
parent
e2018c0393
commit
2f541de569
@ -163,7 +163,7 @@ Hexa = 8
|
|||||||
Hexotic = 9
|
Hexotic = 9
|
||||||
BLSURF = 10
|
BLSURF = 10
|
||||||
GHS3DPRL = 11
|
GHS3DPRL = 11
|
||||||
QUARDANGLE = 0
|
QUADRANGLE = 0
|
||||||
RADIAL_QUAD = 1
|
RADIAL_QUAD = 1
|
||||||
|
|
||||||
# MirrorType enumeration
|
# MirrorType enumeration
|
||||||
@ -1066,10 +1066,10 @@ class Mesh:
|
|||||||
# If the optional \a geom parameter is not set, this algorithm is global.
|
# If the optional \a geom parameter is not set, this algorithm is global.
|
||||||
# \n Otherwise, this algorithm defines a submesh based on \a geom subshape.
|
# \n Otherwise, this algorithm defines a submesh based on \a geom subshape.
|
||||||
# @param geom If defined, the subshape to be meshed (GEOM_Object)
|
# @param geom If defined, the subshape to be meshed (GEOM_Object)
|
||||||
# @param algo values are: smesh.QUARDANGLE || smesh.RADIAL_QUAD
|
# @param algo values are: smesh.QUADRANGLE || smesh.RADIAL_QUAD
|
||||||
# @return an instance of Mesh_Quadrangle algorithm
|
# @return an instance of Mesh_Quadrangle algorithm
|
||||||
# @ingroup l3_algos_basic
|
# @ingroup l3_algos_basic
|
||||||
def Quadrangle(self, geom=0, algo=QUARDANGLE):
|
def Quadrangle(self, geom=0, algo=QUADRANGLE):
|
||||||
if algo==RADIAL_QUAD:
|
if algo==RADIAL_QUAD:
|
||||||
return Mesh_RadialQuadrangle1D2D(self,geom)
|
return Mesh_RadialQuadrangle1D2D(self,geom)
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user