mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-26 09:20:34 +05:00
Merge commit '6600bcec782fc8b6c72871fe6e08bd19a34a4e2b'
This commit is contained in:
commit
274fd4f2db
@ -739,9 +739,11 @@ class StdMeshersBuilder_Quadrangle(Mesh_Algorithm):
|
||||
if corners and isinstance( corners[0], GEOM._objref_GEOM_Object ):
|
||||
corners = [ self.mesh.geompyD.GetSubShapeID( self.mesh.geom, v ) for v in corners ]
|
||||
|
||||
if self.params.GetQuadType() != quadType:
|
||||
#If quadType is None - will used default parameter ( StdMeshers.QUAD_STANDARD )
|
||||
if quadType and self.params.GetQuadType() != quadType:
|
||||
self.params.SetQuadType(quadType)
|
||||
if vertexID > 0:
|
||||
#If triangleVertex is None - will used default parameter ( -1 ):
|
||||
if triangleVertex and vertexID > 0:
|
||||
self.params.SetTriaVertex( vertexID )
|
||||
from salome.smesh.smeshBuilder import AssureGeomPublished
|
||||
for v in enfVertices:
|
||||
|
Loading…
Reference in New Issue
Block a user