File: bug951_2

package info (click to toggle)
opencascade 7.9.2%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 301,924 kB
  • sloc: cpp: 1,523,264; tcl: 10,159; cs: 5,173; java: 1,554; sh: 1,342; ansic: 827; xml: 699; makefile: 30; javascript: 22
file content (40 lines) | stat: -rwxr-xr-x 1,329 bytes parent folder | download | duplicates (5)
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
puts "========="
puts " OCC951 "
puts "========="
puts ""
##################################################
##BRepAlgoAPI_Section and BRepAlgoAPI_Common fail on given shapes
##################################################
## (new topology)
## (bopcommon)
## (bopsection)
######################################################

restore [locate_data_file OCC951_1.brep] b 
restore [locate_data_file OCC951_2.brep] a 

checkshape b
checkshape a

bop b a
bopcommon result

set nb_info [nbshapes result]
regexp {VERTEX +: +([-0-9.+eE]+)} $nb_info full ve
regexp {EDGE +: +([-0-9.+eE]+)} $nb_info full ed
regexp {WIRE +: +([-0-9.+eE]+)} $nb_info full wi
regexp {FACE +: +([-0-9.+eE]+)} $nb_info full fa
regexp {SHELL +: +([-0-9.+eE]+)} $nb_info full sh
regexp {SOLID +: +([-0-9.+eE]+)} $nb_info full so
regexp {COMPSOLID +: +([-0-9.+eE]+)} $nb_info full cm
regexp {COMPOUND +: +([-0-9.+eE]+)} $nb_info full co
regexp {SHAPE +: +([-0-9.+eE]+)} $nb_info full shl
if { $ve != 0 || $ed != 0 || $wi != 0 || $fa != 0 || $sh != 0 || $so != 0 || $cm != 0 || $co != 0 || $shl != 0 } {
    puts  " OCC951 : COMMON operation was made PROPERLY"
} else {
    puts "Faulty OCC951 : result of COMMON operation is EMPTY compound"
}

checkprops result -s 560.908 
checkshape result
checkview -display result -3d -path ${imagedir}/${test_image}.png