mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
BRepMesh: Add new mesh parameter *AllowQualityDecrease* which affects the criteria used for checking of the consistency of the existing mesh to new meshing parameters. So if set to true it will force the meshing of the shape if current deflection strongly vary from the new one, no matter in which side. BRepTools::Clean: Keep triangulation on non-geometric shapes (faces with no surface or edges with no curves).
18 lines
305 B
Plaintext
18 lines
305 B
Plaintext
puts "======="
|
|
puts "0031461: Mesh - Add possibility to force the meshing of the shape"
|
|
puts "======="
|
|
puts ""
|
|
|
|
psphere s 10
|
|
|
|
incmesh s 0.01
|
|
checktrinfo s -tri 10108 -nod 5106
|
|
|
|
incmesh s 0.1 -decrease
|
|
checktrinfo s -tri 978 -nod 507
|
|
|
|
tclean -geom s
|
|
incmesh s 0.01
|
|
tclean s
|
|
checktrinfo s -tri 978 -nod 507
|