mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
30 lines
810 B
Plaintext
30 lines
810 B
Plaintext
puts "TODO OCC12345 ALL: Error : here is shading problem"
|
|
|
|
puts "============"
|
|
puts "FRA62476"
|
|
puts ""
|
|
puts "=================================="
|
|
puts "It takes visual check for this BUG"
|
|
puts "=================================="
|
|
puts ""
|
|
|
|
restore [locate_data_file fra62476a.brep] result
|
|
puts [checkshape result]
|
|
|
|
tclean result
|
|
incmesh result .1
|
|
triangles result
|
|
|
|
set info [trinfo result]
|
|
regexp { +([-0-9.+eE]+) +triangles} $info full tri
|
|
regexp { +([-0-9.+eE]+) +nodes} $info full nod
|
|
|
|
if { $tri != 93 && $nod != 56 } {
|
|
puts "Error : here is shading problem"
|
|
}
|
|
|
|
set 3dviewer 0
|
|
|
|
|
|
|