File: bug23153

package info (click to toggle)
oce 0.18.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 301,548 kB
  • sloc: cpp: 1,190,609; ansic: 67,225; sh: 11,630; tcl: 7,954; cs: 5,221; python: 2,867; java: 1,522; makefile: 342; xml: 292; perl: 37
file content (68 lines) | stat: -rw-r--r-- 1,181 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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
decho off
stepread [locate_data_file $TheFileName] a *
decho on
tpcompound result

set square 14684.4
set nb_v_good 1152
set nb_e_good 1735
set nb_w_good 635
set nb_f_good 581
set nb_sh_good 1
set nb_sol_good 1
set nb_compsol_good 0
set nb_compound_good 1
set nb_shape_good 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