Files
OCCT/tests/bugs/vis/bug23153
ski 58cf74e0c0 0025945: Make stable checking of shape global properties in tests
- Added function checkprops, set default tolerance parameter to 1.0e-4
- Using "area" instead of "square".
- Options "-equal\notequal" isn't used together with "-s" in blend and offset test cases.
- Correct regressions/differences/improvements and CPU problem (set props tolerance to 0.1)
- Corrected test cases to use checkprops proc.
- Correct image difference
- Updated TODOs in test cases.
- Updated test cases to get correct images of result shape
2015-12-10 16:56:03 +03:00

62 lines
1.2 KiB
Plaintext
Executable File

puts "REQUIRED All: \\*\\*\\* Error on Record"
puts "============"
puts "OCC23153"
puts "============"
puts ""
#######################################################################
# BRepMesh can't apply a mesh for a face of attached shape
#######################################################################
pload XDE
set BugNumber OCC23153
set TheFileName OCC23153-long_furrowed_shape.stp
stepread [locate_data_file $TheFileName] a *
tpcompound result
checkprops result -s 14684.4
checkshape result
checknbshapes result -vertex 1152 -edge 1735 -wire 635 -face 581 -shell 1 -solid 1 -compsolid 0 -compound 1 -shape 4106
vinit
vsetdispmode 1
vdisplay result
vtop
vfit
set status 0
set x1 223
set y1 195
if { "[vreadpixel $x1 $y1 rgb name]" == "BLACK" } {
set status 1
puts "Faulty Color1"
}
set x2 224
set y2 240
if { "[vreadpixel $x2 $y2 rgb name]" == "BLACK" } {
set status 1
puts "Faulty Color2"
}
set x3 223
set y3 266
if { "[vreadpixel $x3 $y3 rgb name]" == "BLACK" } {
set status 1
puts "Faulty Color3"
}
# Resume
puts ""
if { ${status} == 0 } {
puts "OK ${BugNumber}"
} else {
puts "Faulty ${BugNumber}"
}
set only_screen 1