File: bug21909

package info (click to toggle)
oce 0.17.2-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 297,992 kB
  • ctags: 203,291
  • sloc: cpp: 1,176,369; ansic: 67,206; sh: 11,647; tcl: 6,890; cs: 5,221; python: 2,867; java: 1,522; makefile: 338; xml: 292; perl: 37
file content (69 lines) | stat: -rw-r--r-- 1,443 bytes parent folder | download | duplicates (2)
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
69
pload QAcommands

puts "============"
puts "OCC21909"
puts "============"
puts ""
#######################################################################
# The surface is visualized with rendering errors
#######################################################################

set BugNumber OCC21909

# Data

set scale    57.547428234801195
set proj_X   -0.25567048788070679
set proj_Y   -0.92769843339920044
set proj_Z   0.27204453945159912
set up_X     0.43156850337982178
set up_Y     0.14228194952011108
set up_Z     0.89078855514526367
set at_X     16.2722331487924
set at_Y     -19.463212261103
set at_Z     -16.4505465814645

set x1 190

set y1 216
set y2 228

#
restore [locate_data_file OCC21909-render_error.brep] result

vinit
vdisplay result
vfit

vsetdispmode 1
vfit

vviewparams -scale ${scale} -proj ${proj_X} ${proj_Y} ${proj_Z} -up ${up_X} ${up_Y} ${up_Z} -at ${at_X} ${at_Y} ${at_Z}

vmoveto ${x1} ${y1}
vmoveto ${x1} ${y1}

set status 0
for {set i ${y1} } {$i <= ${y2} } {incr i} {
    set Color1 [QAGetPixelColor ${x1} ${i}]

    set R1 [lindex ${Color1} 2]
    set G1 [lindex ${Color1} 5]
    set B1 [lindex ${Color1} 8]

    puts "x = ${x1}   y = ${i}   R = ${R1}   G = ${G1}   B = ${B1}"

    if { ${R1} == 0 && ${G1} == 0 && ${B1} == 0 } {
	incr status
	puts "Error : rendering  x = ${x1}  y = ${i}"
    }
}

if { ${status} != 0 } {
    puts "Faulty ${BugNumber}"
} else {
    puts "OK ${BugNumber}"
}

set 3dviewer 0