mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-01 04:10:33 +05:00
10 lines
189 B
Python
10 lines
189 B
Python
|
# Cutting Quadrangles
|
||
|
|
||
|
import SMESH_mechanic
|
||
|
|
||
|
smesh = SMESH_mechanic.smesh
|
||
|
mesh = SMESH_mechanic.mesh
|
||
|
|
||
|
# cut two quadrangles: 405 and 406
|
||
|
mesh.QuadToTri([405, 406], smesh.FT_MinimumAngle)
|