0023457: Slow text rendering
[occt.git] / tests / bugs / modalg / bug745_7
CommitLineData
f1aa2b62 1puts "TODO OCC12345 ALL: Faulty : Result shape is NULL shape"
2puts "TODO OCC12345 ALL: Error : The command is not valid. The length is"
3
4puts "========"
5puts "OCC745"
6puts "========"
7puts ""
8######################################################
9## Exception thrown: Standard_ConstructionError: Offset wire is not closed:
10######################################################
11
12source [locate_data_file OCC745_cont1.dat]
352ffd73 13checkshape pp
f1aa2b62 14
15if { [catch { mkoffset result pp 1 -10 } status] } {
16 puts "Faulty OCC745"
17} else {
18 renamevar result_1 result
19 set nb_info [nbshapes result]
20 regexp {VERTEX +: +([-0-9.+eE]+)} $nb_info full ve
21 puts [format "Result shape result contains %s vertexes" $ve]
22 if { $ve == 0 } {
23 puts [format "Faulty : Result shape is NULL shape"]
24 } else {
25 regexp {WIRE +: +([-0-9.+eE]+)} $nb_info full wi
26 if {$wi > 1 } {
27 set ll [explode result w]
28 set num [llength $ll]
29 puts [format "Faulty : Result shape result is COMPOUND and contains %s wires" $num]
30 foreach {k} $ll {
352ffd73 31 checkshape $k
f1aa2b62 32 regexp {nb alone Vertices : ([-0-9.+eE]+)} [checksection $k] full cs
33 if { $cs != 0 } {
34 puts [format "Faulty : Result shape is UNclosed wire !!! " $k]
35 } else {
36 puts [format "OK: Result shape is CLOSED wire !!! "]
37 }
38 }
39 }
40 }
41}
42
43set length 0
44set 2dviewer 0
45