mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
BRepMesh_ModelHealer - recognize a small face with 1 wire and 2 small edges as a face for refinement. BRepMesh_DefaultRangeSplinner - reduce tolerance on tiny faces to improve the meshing results. Added new test cases: bugs mesh bug25044_*. Existing test cases updated to reflect improvements.
41 lines
1.2 KiB
Plaintext
Executable File
41 lines
1.2 KiB
Plaintext
Executable File
puts "TODO CR30056 ALL: Meshing statuses: SelfIntersectingWire Failure"
|
|
|
|
puts "============"
|
|
puts "OCC22849"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
# Bad import of a STEP file (error during triangulation)
|
|
#######################################################################
|
|
|
|
set BugNumber OCC22849
|
|
|
|
catch {pload XDE}
|
|
|
|
stepread [locate_data_file OCC22849-2520-6002_step.stp] a *
|
|
checkshape a_1
|
|
##tole a_1
|
|
incmesh a_1 0.1
|
|
tricheck a_1
|
|
explode a_1 f
|
|
|
|
set info1 [fromshape a_1_67]
|
|
regexp {Shape a_1_67 : imported from entity ([-0-9.+eE]+:#[-0-9.+eE]+)} $info1 full entity1
|
|
set word1 [string compare $entity1 4973:#5009]
|
|
|
|
set info2 [fromshape a_1_73]
|
|
regexp {Shape a_1_73 : imported from entity ([-0-9.+eE]+:#[-0-9.+eE]+)} $info2 full entity2
|
|
set word2 [string compare $entity2 5157:#5193]
|
|
|
|
set info3 [fromshape a_1_91]
|
|
regexp {Shape a_1_91 : imported from entity ([-0-9.+eE]+:#[-0-9.+eE]+)} $info3 full entity3
|
|
set word3 [string compare $entity3 5659:#5695]
|
|
|
|
if { ${word1} == 0 && ${word2} == 0 && ${word3} == 0 } {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
}
|
|
|
|
checkview -display result -3d -path ${imagedir}/${test_image}.png
|