mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Fix compilation error on Linux Adding test command for this fix meshPolygon: simplify source polygon by splitting it onto parts without glued edges and loops Check surrounded triangles during final cleaning of mesh Correct polygon on frontier edges Modified test cases in group mesh according to new behavior
26 lines
640 B
Plaintext
Executable File
26 lines
640 B
Plaintext
Executable File
puts "================"
|
|
puts "CR23105"
|
|
puts "================"
|
|
puts ""
|
|
###############################################
|
|
## Exception during Meshing / Missing triangles
|
|
###############################################
|
|
|
|
restore [locate_data_file bug23105_f372.brep] result
|
|
checkshape result
|
|
|
|
incmesh result 0.1
|
|
set trinfo_s [trinfo result]
|
|
regexp {([0-9]+) triangles} $trinfo_s str nbtri_s
|
|
regexp {deflection ([0-9.+e-]+)} $trinfo_s str defl_s
|
|
|
|
# check deflections
|
|
if { $defl_s > 0.1 } {
|
|
puts "Error: too big deflection ($defl_s > 0.1)"
|
|
}
|
|
|
|
# compare number of triangles
|
|
if { $nbtri_s == 0 } {
|
|
puts "Error: shape contains 0 triangles"
|
|
}
|