1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/mesh/bug31461
emv 128654b60b 0031461: Mesh - Add possibility to force the meshing of the shape
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).
2020-04-01 13:36:29 +03:00

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