# To prevent loops limit to 10 minutes
-cpulimit 600
-
+cpulimit 900
if { [array get Draw_Groups "TOPOLOGY Feature commands"] == "" } {
- pload TOPTEST
+ pload TOPTEST
+}
+if { [array get Draw_Groups "Shape Healing"] == "" } {
+ pload XSDRAW
}
-
if { [info exists imagedir] == 0 } {
set imagedir .
}
if { [info exists test_image ] == 0 } {
set test_image photo
}
-
proc OFFSETSHAPE {distance faces calcul type} {
global GlobFaces
set GlobFaces $faces
+set mist 0
+if { [info exists command] && [string compare $command "mkoffset"] == 0 } {
+ regexp {Mass +: +([-0-9.+eE]+)} [lprops s] full sm
+ regexp {Tolerance +MAX=([-0-9.+eE]+) +AVG=([-0-9.+eE]+) +MIN=[-0-9.+eE]+} [tolerance s] full MaxTol_s AvgTol_s
+ puts "Length of shape a is equal to $sm"
+ set theOff [expr $sm * $off_param ]
+ puts [format "Considered Offset value is %s " $theOff]
+ if { ![catch { mkoffset result s 1 $theOff } catch_res] } {
+ renamevar result_1 result
+ if { ![catch { set chsh [checkshape result] } catch_chsh] } {
+ puts $chsh
+ } else {
+ puts "Error : $catch_chsh"
+ set mist 1
+ }
+ }
+}
+
+if { [isdraw result] && $mist == 0} {
+ if { [info exists command] && [string compare $command "mkoffset"] == 0 } {
+ regexp {Mass +: +([-0-9.+eE]+)} [lprops result] full m
+
+ set vertex_list [explode result v]
+ set ll_v [llength $vertex_list]
-if { [isdraw result] } {
- regexp {Mass +: +([-0-9.+eE]+)} [vprops s] full sm
- regexp {Mass +: +([-0-9.+eE]+)} [vprops result] full m
+ set edge_list [explode result e]
+ set ll_e [llength $edge_list]
- #check if result is valid
- puts [checkshape result]
- if { $m == 0 || $sm == $m } {
- puts "Error : The offset is not valid. The volume is $m."
- }
+ set wire_list [explode result w]
+ if { [string compare $wire_list ""] == 0} {
+ set wire_list result
+ }
+ set ll_w [llength $wire_list]
- #check of face's square value
- foreach ResultFace [ explode result f ] {
- regexp {Mass +: +([-0-9.+eE]+)} [sprops $ResultFace] full fmass
- if { $fmass < 0 } {
- puts "Error : Square of face $ResultFace of result shape is negative."
- }
- }
- #check for bsection
- if { [info exists GlobFaces] && [llength $GlobFaces] == 0 } {
- puts [ bsection re $result $s ]
- if { [ isdraw re ] } {
- regexp {Mass +: +([-0-9.+eE]+)} [lprops $re] full remass
- if { $remass != 0 } {
- puts "Error: bsection of result and s is not equal zero."
- }
- }
- }
+ if { $ll_v == 0 } {
+ if { $theOff < 0 } {
+ puts [format "Warning : Result shape is empty COMPOUND"]
+ } else {
+ puts [format "Error : Result shape is empty COMPOUND"]
+ }
+ puts [whatis result]
+ puts [nbshapes result]
+ puts [checksection result]
+ } else {
+ puts [format "Result shape contains %s wires" $ll_w]
+ foreach wire $wire_list {
+ puts "Info for $wire:"
+ regexp {Tolerance +MAX=([-0-9.+eE]+) +AVG=([-0-9.+eE]+) +MIN=[-0-9.+eE]+} [tolerance $wire] full MaxTol_res AvgTol_res
+ if { $MaxTol_res > $MaxTol_s } {
+ puts "Error : big tolerance of shape $wire"
+ }
+ regexp {nb +alone +Vertices +: +([-0-9.+eE]+)} [checksection $wire] full num
+ if { $num != 0 } {
+ puts [format "Error : $wire is UNclosed wire !!!"]
+ }
+ mkplane res_plane $wire
+ set chsh_res_plane [checkshape res_plane]
+ if { [regexp {Faulty +shapes +in +variables +faulty_([-0-9.+eE]+) +to +faulty_([-0-9.+eE]+)} $chsh_res_plane full from_faulty to_faulty ] } {
+ puts "Shape $wire has self-intersection"
+ }
+ }
+ }
- if { $volume > 0 } {
- puts "The expected volume is $volume"
- }
- #check of change of volume is < 1%
- if { ($volume > 0 && [expr abs($volume - $m)/$volume] > 0.01) || ($volume == 0 && $m != 0 && $sm != $m) } {
- puts "Error : The volume of result shape is $m"
- }
- if { $m > 0 } {
- clear
- smallview
- donly result
- fit
- xwd $imagedir/${test_image}.gif
- }
+ if { [string compare $length "empty"] != 0 } {
+ puts "The expected length is $length"
+ #check of change of length is < 1%
+ if { ($length != 0 && [expr abs($length - $m)/$length] > 0.01) || ($length == 0 && $m != 0) } {
+ puts "Error : The length of result shape is $m"
+ }
+ } else {
+ if { $m != 0 } {
+ puts "Error : The offset is not valid. The length is $m"
+ }
+ }
+ # check for number of vertexes
+ if { [info exists nbsh_v ] } {
+ if { ($ll_v != $nbsh_v) || ($nbsh_v == 0 && $ll_v != 0) } {
+ puts "Error : Result shape is WRONG because it must contain $nbsh_v vertexes instead of $ll_v"
+ } else {
+ puts "Result shape contains $ll_v vertexes"
+ }
+ }
+ # check for number of edges
+ if { [info exists nbsh_e ] } {
+ if { ($ll_e != $nbsh_e) || ($nbsh_e == 0 && $ll_e != 0) } {
+ puts "Error : Result shape is WRONG because it must contain $nbsh_e edges instead of $ll_e"
+ } else {
+ puts "Result shape contains $ll_e edges"
+ }
+ }
+ # check for number of wires
+ if { [info exists nbsh_w ] } {
+ if { ($ll_w != $nbsh_w) || ($nbsh_w == 0 && $ll_w != 0) } {
+ puts "Error : Result shape is WRONG because it must contain $nbsh_w wires instead of $ll_w"
+ } else {
+ puts "Result shape contains $ll_w wires"
+ }
+ }
+ } else {
+ regexp {Mass +: +([-0-9.+eE]+)} [vprops s] full sm
+ regexp {Mass +: +([-0-9.+eE]+)} [vprops result] full m
+
+ #check if result is valid
+ puts [checkshape result]
+ if { $m == 0 || $sm == $m } {
+ puts "Error : The offset is not valid. The volume is $m."
+ }
+
+ #check of face's square value
+ foreach ResultFace [ explode result f ] {
+ regexp {Mass +: +([-0-9.+eE]+)} [sprops $ResultFace] full fmass
+ if { $fmass < 0 } {
+ puts "Error : Square of face $ResultFace of result shape is negative."
+ }
+ }
+ #check for bsection
+ if { [info exists GlobFaces] && [llength $GlobFaces] == 0 } {
+ puts [ bsection re $result $s ]
+ if { [ isdraw re ] } {
+ regexp {Mass +: +([-0-9.+eE]+)} [lprops $re] full remass
+ if { $remass != 0 } {
+ puts "Error: bsection of result and s is not equal zero."
+ }
+ }
+ }
+
+ if { $volume > 0 } {
+ puts "The expected volume is $volume"
+ }
+ #check of change of volume is < 1%
+ if { ($volume > 0 && [expr abs($volume - $m)/$volume] > 0.01) || ($volume == 0 && $m != 0 && $sm != $m) } {
+ puts "Error : The volume of result shape is $m"
+ }
+ }
+ if { $m > 0 } {
+ clear
+ smallview
+ donly result
+ fit
+ xwd $imagedir/${test_image}.gif
+ }
} else {
- puts "Error : The offset can not be build."
+ puts "Error : The offset can not be build."
}
# to end a test script
|| [string compare $os "Mandriva2010" ] == 0
|| [string compare $os "Mandriva2010-64"] == 0
|| [string compare $os "SUSE10-64"] == 0
- || [regexp -nocase {Windows} $os] == 1
+ || [regexp {Windows} $os] == 1
} {
puts "TODO OCC23068 $os: An exception was caught"
puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*"
003 faces_type_i
004 shape_type_a
005 shape_type_i
-006 shape
\ No newline at end of file
+006 shape
+007 wire_closed_outside_0_005
+008 wire_closed_outside_0_025
+009 wire_closed_outside_0_075
+010 wire_closed_inside_0_005
+011 wire_closed_inside_0_025
+012 wire_closed_inside_0_075
+013 wire_unclosed_outside_0_005
+014 wire_unclosed_outside_0_025
+015 wire_unclosed_outside_0_075
-puts "TODO ?OCC23068 Mandriva2010: Faulty shapes in variables faulty_1 to faulty_"
-puts "TODO ?OCC23068 Mandriva2010: Error: bsection of result and s is not equal zero"
+puts "TODO OCC23068 Mandriva2010: Error: bsection of result and s is not equal zero"
puts "TODO OCC23068 Mandriva2010: Error : The volume of result shape "
ellipse w1 0 0 0 15 10
mkedge w1 w1 0 pi/2
--- /dev/null
+restore [locate_data_file offset_wire_002.brep] s
+
+set length 232.96
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_003.brep] s
+
+set length 1135.41
+set nbsh_v 120
+set nbsh_e 120
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_004.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_005.brep] s
+
+set length 222.808
+set nbsh_v 26
+set nbsh_e 26
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_006.brep] s
+
+set length 150.854
+set nbsh_v 22
+set nbsh_e 22
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_007.brep] s
+
+set length 242.115
+set nbsh_v 30
+set nbsh_e 30
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_008.brep] s
+
+set length 1967.47
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_012.brep] s
+
+set length 48.826
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_013.brep] s
+
+set length 1873.7
+set nbsh_v 25
+set nbsh_e 25
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_014.brep] s
+
+set length 776.496
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_015.brep] s
+
+set length 768.162
+set nbsh_v 116
+set nbsh_e 116
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_017.brep] s
+
+set length 122.21
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+restore [locate_data_file offset_wire_018.brep] s
+
+set length 24.8301
+set nbsh_v 20
+set nbsh_e 20
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_019.brep] s
+
+set length 1030.64
+set nbsh_v 202
+set nbsh_e 202
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_020.brep] s
+
+set length 190.807
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+restore [locate_data_file offset_wire_021.brep] s
+
+set length 182.229
+set nbsh_v 44
+set nbsh_e 44
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_023.brep] s
+
+set length 62.3443
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_025.brep] s
+
+set length 2209.15
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_028.brep] s
+
+set length 1657.26
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_029.brep] s
+
+set length 1100.32
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_030.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_031.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_036.brep] s
+
+set length 4.32621
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_037.brep] s
+
+set length 925.775
+set nbsh_v 38
+set nbsh_e 38
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_038.brep] s
+
+set length 420.587
+set nbsh_v 63
+set nbsh_e 63
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_039.brep] s
+
+set length 188.897
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_040.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] != 0
+ && [string compare $os "Mandriva2010"] != 0
+ && [string compare $os "Mandriva2008"] != 0
+ } {
+ puts "TODO OCC23068 $os: Error : Result shape is WRONG"
+}
+
+
+
+restore [locate_data_file offset_wire_041.brep] s
+
+set length 3319.85
+set nbsh_v 618
+set nbsh_e 618
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_042.brep] s
+
+set length 256.859
+set nbsh_v 31
+set nbsh_e 31
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] == 0
+ || [string compare $os "Mandriva2010"] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ } {
+ puts "TODO OCC23068 $os: Error : result is not a topological shape"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+} else {
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+}
+
+restore [locate_data_file offset_wire_043.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
+
+
--- /dev/null
+restore [locate_data_file offset_wire_044.brep] s
+
+set length 30.9287
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_045.brep] s
+
+set length 60.3545
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_046.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_047.brep] s
+
+set length 96.3379
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_048.brep] s
+
+set length 27.7312
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 2
+
--- /dev/null
+restore [locate_data_file offset_wire_049.brep] s
+
+set length 26.7702
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_050.brep] s
+
+set length 5.21422
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_051.brep] s
+
+set length 24.8784
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_052.brep] s
+
+set length 68.541
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_054.brep] s
+
+set length 190.3
+set nbsh_v 41
+set nbsh_e 41
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_055.brep] s
+
+set length 491.555
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_056.brep] s
+
+set length 1109.94
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_057.brep] s
+
+set length 970.536
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_059.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_060.brep] s
+
+set length 14.3355
+set nbsh_v 24
+set nbsh_e 24
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_061.brep] s
+
+set length 2062.48
+set nbsh_v 28
+set nbsh_e 28
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_062.brep] s
+
+set length 410.561
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_063.brep] s
+
+set length 538.146
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_064.brep] s
+
+set length 591.249
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_065.brep] s
+
+set length 427.733
+set nbsh_v 40
+set nbsh_e 40
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_066.brep] s
+
+set length 88.5313
+set nbsh_v 80
+set nbsh_e 80
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+restore [locate_data_file offset_wire_067.brep] s
+
+set length 20.1196
+set nbsh_v 116
+set nbsh_e 116
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_068.brep] s
+
+set length 1404.64
+set nbsh_v 73
+set nbsh_e 73
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_077.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_078.brep] s
+
+set length 452.32
+set nbsh_v 62
+set nbsh_e 62
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_079.brep] s
+
+set length 103.961
+set nbsh_v 24
+set nbsh_e 24
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_080.brep] s
+
+set length 133.298
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_081.brep] s
+
+set length 376.906
+set nbsh_v 66
+set nbsh_e 66
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_082.brep] s
+
+set length 1011.74
+set nbsh_v 37
+set nbsh_e 37
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_083.brep] s
+
+set length 799.636
+set nbsh_v 19
+set nbsh_e 19
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_084.brep] s
+
+set length 17.0693
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_085.brep] s
+
+set length 263.304
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_086.brep] s
+
+set length 587.462
+set nbsh_v 24
+set nbsh_e 24
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_087.brep] s
+
+set length 26.9235
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_088.brep] s
+
+set length 74.0829
+set nbsh_v 24
+set nbsh_e 24
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_089.brep] s
+
+set length 896.364
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_090.brep] s
+
+set length 392.211
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_091.brep] s
+
+set length 21.0717
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_092.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_093.brep] s
+
+set length 109.379
+set nbsh_v 14
+set nbsh_e 14
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_094.brep] s
+
+set length 170.965
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_095.brep] s
+
+set length 231.555
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_096.brep] s
+
+set length 2655.76
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_097.brep] s
+
+set length 1217.27
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_098.brep] s
+
+set length 218.917
+set nbsh_v 14
+set nbsh_e 14
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_099.brep] s
+
+set length 283.282
+set nbsh_v 32
+set nbsh_e 32
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_100.brep] s
+
+set length 358.205
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_101.brep] s
+
+set length 191.974
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_102.brep] s
+
+set length 23.4597
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ || [string compare $os "SUSE10-64"] == 0
+ || [string compare $os "Windows-64-VC8"] == 0
+ || [string compare $os "Windows-64-VC9"] == 0
+ || [string compare $os "Windows-64-VC10"] == 0
+ } {
+ puts "TODO OCC23068 $os: Error : Result shape is WRONG"
+}
+
+restore [locate_data_file offset_wire_103.brep] s
+
+set length 316.751
+set nbsh_v 43
+set nbsh_e 43
+set nbsh_w 1
+
+
+
+
--- /dev/null
+restore [locate_data_file offset_wire_104.brep] s
+
+set length 770.627
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_105.brep] s
+
+set length 782.13
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_106.brep] s
+
+set length 827.017
+set nbsh_v 23
+set nbsh_e 23
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_107.brep] s
+
+set length 314.489
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_108.brep] s
+
+set length 320.973
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_109.brep] s
+
+set length 246.044
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_110.brep] s
+
+set length 1239.19
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_111.brep] s
+
+set length 150.604
+set nbsh_v 25
+set nbsh_e 25
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_112.brep] s
+
+set length 818.621
+set nbsh_v 372
+set nbsh_e 372
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_113.brep] s
+
+set length 1125.12
+set nbsh_v 22
+set nbsh_e 22
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_114.brep] s
+
+set length 357.293
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_115.brep] s
+
+set length 246.976
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+set off_param -0.005
+set command "mkoffset"
--- /dev/null
+restore [locate_data_file offset_wire_002.brep] s
+
+set length 195.472
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_003.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_004.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_005.brep] s
+
+set length 166.151
+set nbsh_v 21
+set nbsh_e 21
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_006.brep] s
+
+set length 110.349
+set nbsh_v 19
+set nbsh_e 19
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_007.brep] s
+
+set length 206.188
+set nbsh_v 27
+set nbsh_e 27
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_008.brep] s
+
+set length 1296.92
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 2
+
--- /dev/null
+restore [locate_data_file offset_wire_012.brep] s
+
+set length 32.9112
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_013.brep] s
+
+set length 1384.33
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_014.brep] s
+
+set length 663.664
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_015.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_017.brep] s
+
+set length 93.864
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_3"
+restore [locate_data_file offset_wire_018.brep] s
+
+set length 23.8673
+set nbsh_v 20
+set nbsh_e 20
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_019.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_020.brep] s
+
+set length 122.02
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 2
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_021.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_023.brep] s
+
+set length 51.3716
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_025.brep] s
+
+set length 1809.82
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_028.brep] s
+
+set length 1395.61
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_029.brep] s
+
+set length 923.104
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 2
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_030.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_031.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_036.brep] s
+
+set length 3.76506
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_037.brep] s
+
+set length 805.665
+set nbsh_v 38
+set nbsh_e 38
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_038.brep] s
+
+set length 365.164
+set nbsh_v 59
+set nbsh_e 59
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_039.brep] s
+
+set length 158.841
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Windows-64-VC10"] == 0
+ || [string compare $os "Windows-64-VC9"] == 0
+ || [string compare $os "Windows-64-VC8"] == 0
+ } {
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+ puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+} else {
+ puts "TODO OCC23068 $os: Error : result is not a topological shape"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+}
+
+restore [locate_data_file offset_wire_040.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+cpulimit 2400
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_041.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_042.brep] s
+
+set length 223.18
+set nbsh_v 27
+set nbsh_e 27
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] == 0
+ || [string compare $os "Mandriva2010"] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ } {
+ puts "TODO OCC23068 $os: Error : result is not a topological shape"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+} else {
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+}
+
+restore [locate_data_file offset_wire_043.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_044.brep] s
+
+set length 26.3475
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_045.brep] s
+
+set length 50.2954
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_046.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_047.brep] s
+
+set length 69.77
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_048.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_049.brep] s
+
+set length 14.5369
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_050.brep] s
+
+set length 1.61237
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_051.brep] s
+
+set length 10.7233
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_052.brep] s
+
+set length 42.1732
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 2
+
--- /dev/null
+restore [locate_data_file offset_wire_054.brep] s
+
+set length 165.611
+set nbsh_v 41
+set nbsh_e 41
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_055.brep] s
+
+set length 415.78
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_056.brep] s
+
+set length 802.683
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_057.brep] s
+
+set length 536.062
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 3
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_059.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_060.brep] s
+
+set length 11.4888
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_061.brep] s
+
+set length 1189.78
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_062.brep] s
+
+set length 357.203
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_063.brep] s
+
+set length 467.995
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_064.brep] s
+
+set length 385.545
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_065.brep] s
+
+set length 357.708
+set nbsh_v 37
+set nbsh_e 37
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_066.brep] s
+
+set length 77.0453
+set nbsh_v 80
+set nbsh_e 80
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_067.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_068.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_077.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_078.brep] s
+
+set length 240.105
+set nbsh_v 38
+set nbsh_e 38
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_079.brep] s
+
+set length 82.3154
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_080.brep] s
+
+set length 116.004
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_081.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_082.brep] s
+
+set length 845.75
+set nbsh_v 19
+set nbsh_e 19
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_083.brep] s
+
+set length 336.833
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 2
+
--- /dev/null
+restore [locate_data_file offset_wire_084.brep] s
+
+set length 10.6785
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_085.brep] s
+
+set length 188.241
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_086.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_087.brep] s
+
+set length 22.1665
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_088.brep] s
+
+set length 29.3518
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 2
+
--- /dev/null
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_6"
+restore [locate_data_file offset_wire_089.brep] s
+
+set length 953.42
+set nbsh_v 20
+set nbsh_e 20
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_090.brep] s
+
+set length 123.945
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_091.brep] s
+
+set length 17.3562
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_092.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_093.brep] s
+
+set length 91.5865
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_094.brep] s
+
+set length 146.772
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_095.brep] s
+
+set length 22.0754
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_096.brep] s
+
+set length 2247.72
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_097.brep] s
+
+set length 1014.6
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_098.brep] s
+
+set length 190.049
+set nbsh_v 14
+set nbsh_e 14
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_099.brep] s
+
+set length 211.408
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_100.brep] s
+
+set length 311.731
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_101.brep] s
+
+set length 159.896
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_102.brep] s
+
+set length 20.1722
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ || [string compare $os "SUSE10-64"] == 0
+ || [string compare $os "Windows-64-VC8"] == 0
+ || [string compare $os "Windows-64-VC9"] == 0
+ || [string compare $os "Windows-64-VC10"] == 0
+ } {
+ puts "TODO OCC23068 $os: Error : Result shape is WRONG"
+}
+restore [locate_data_file offset_wire_103.brep] s
+
+set length 245.13
+set nbsh_v 27
+set nbsh_e 27
+set nbsh_w 1
+
+
--- /dev/null
+restore [locate_data_file offset_wire_104.brep] s
+
+set length 670.646
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_105.brep] s
+
+set length 663.429
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_106.brep] s
+
+set length 662.458
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_107.brep] s
+
+set length 271.951
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_108.brep] s
+
+set length 269.063
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_109.brep] s
+
+set length 209.053
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_110.brep] s
+
+set length 1078.42
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_111.brep] s
+
+set length 131.065
+set nbsh_v 25
+set nbsh_e 25
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_112.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_113.brep] s
+
+set length 792.426
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_114.brep] s
+
+set length 285.872
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 2
+
--- /dev/null
+restore [locate_data_file offset_wire_115.brep] s
+
+set length 212.374
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
+
--- /dev/null
+set off_param -0.025
+set command "mkoffset"
--- /dev/null
+restore [locate_data_file offset_wire_002.brep] s
+
+set length 94.8515
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_003.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_004.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_005.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] != 0
+ && [string compare $os "Mandriva2008"] != 0
+ } {
+ puts "TODO OCC23068 $os: Error : result is not a topological shape"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+}
+restore [locate_data_file offset_wire_006.brep] s
+
+set length 16.307
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_007.brep] s
+
+set length 100.492
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_008.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_012.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_013.brep] s
+
+set length 561.731
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_014.brep] s
+
+set length 342.991
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_015.brep] s
+
+set length 156.199
+set nbsh_v 21
+set nbsh_e 21
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_017.brep] s
+
+set length 24.4417
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_018.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_019.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_020.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_021.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_023.brep] s
+
+set length 7.52816
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_025.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_028.brep] s
+
+set length 741.495
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_029.brep] s
+
+set length 342.832
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_030.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_031.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_036.brep] s
+
+set length 2.34764
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_037.brep] s
+
+set length 505.361
+set nbsh_v 36
+set nbsh_e 36
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ } {
+ puts "TODO OCC23068 $os: Faulty shapes in variables faulty_1 to faulty_4"
+ puts "TODO OCC23068 $os: Error : The length of result shape is"
+ puts "TODO OCC23068 $os: Error : Result shape is WRONG"
+}
+
+restore [locate_data_file offset_wire_038.brep] s
+
+set length 223.954
+set nbsh_v 38
+set nbsh_e 38
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_4"
+restore [locate_data_file offset_wire_039.brep] s
+
+set length 93.0292
+set nbsh_v 20
+set nbsh_e 20
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Windows-64-VC10"] == 0
+ || [string compare $os "Windows-64-VC9"] == 0
+ || [string compare $os "Windows-64-VC8"] == 0
+ } {
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+} else {
+ puts "TODO OCC23068 $os: Error : result is not a topological shape"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+}
+
+restore [locate_data_file offset_wire_040.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_041.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_042.brep] s
+
+set length 117.455
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] == 0
+ || [string compare $os "Mandriva2010"] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ } {
+ puts "TODO OCC23068 $os: Error : result is not a topological shape"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+} else {
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+}
+
+restore [locate_data_file offset_wire_043.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
--- /dev/null
+restore [locate_data_file offset_wire_044.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_045.brep] s
+
+set length 25.1477
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_046.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_047.brep] s
+
+set length 19.5045
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_048.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_049.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_050.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_051.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_052.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_054.brep] s
+
+set length 103.887
+set nbsh_v 41
+set nbsh_e 41
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_055.brep] s
+
+set length 220.703
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_056.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_057.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_059.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_060.brep] s
+
+set length 5.23143
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_061.brep] s
+
+set length 171.026
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_062.brep] s
+
+set length 91.0042
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_063.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_064.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_065.brep] s
+
+set length 175.978
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_066.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_067.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_068.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_077.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_078.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_079.brep] s
+
+set length 6.87722
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_080.brep] s
+
+set length 9.29926
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_081.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_082.brep] s
+
+set length 160.262
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_083.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_084.brep] s
+
+set length 4.33211
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_085.brep] s
+
+set length 73.5727
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_086.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_087.brep] s
+
+set length 8.76538
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_088.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_6"
+restore [locate_data_file offset_wire_089.brep] s
+
+set length 1110.06
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_090.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_091.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_092.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_093.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_094.brep] s
+
+set length 60.9685
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_095.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_096.brep] s
+
+set length 1163.23
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_097.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_098.brep] s
+
+set length 115.556
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_099.brep] s
+
+set length 4.75963
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 2
+
--- /dev/null
+restore [locate_data_file offset_wire_100.brep] s
+
+set length 142.667
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_101.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_102.brep] s
+
+set length 12.3888
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ || [string compare $os "SUSE10-64"] == 0
+ || [string compare $os "Windows-64-VC8"] == 0
+ || [string compare $os "Windows-64-VC9"] == 0
+ || [string compare $os "Windows-64-VC10"] == 0
+ } {
+ puts "TODO OCC23068 $os: Error : Result shape is WRONG"
+}
+
+restore [locate_data_file offset_wire_103.brep] s
+
+set length 94.1559
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
+
--- /dev/null
+restore [locate_data_file offset_wire_104.brep] s
+
+set length 420.694
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_105.brep] s
+
+set length 358.56
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_106.brep] s
+
+set length 344.421
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_107.brep] s
+
+set length 131.962
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_108.brep] s
+
+set length 131.212
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_109.brep] s
+
+set length 115.836
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_110.brep] s
+
+set length 676.488
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_111.brep] s
+
+set length 24.4139
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_112.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_113.brep] s
+
+set length 82.2146
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_114.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_115.brep] s
+
+set length 6.81895
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
+
+
--- /dev/null
+set off_param -0.075
+set command "mkoffset"
--- /dev/null
+restore [locate_data_file offset_wire_002.brep] s
+
+set length 249.903
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_003.brep] s
+
+set length 1224.8
+set nbsh_v 137
+set nbsh_e 137
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_004.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_005.brep] s
+
+set length 243.898
+set nbsh_v 35
+set nbsh_e 35
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_006.brep] s
+
+set length 168.498
+set nbsh_v 33
+set nbsh_e 33
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_007.brep] s
+
+set length 258.969
+set nbsh_v 36
+set nbsh_e 36
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_008.brep] s
+
+set length 2145.41
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_012.brep] s
+
+set length 58.3821
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_013.brep] s
+
+set length 2012.29
+set nbsh_v 24
+set nbsh_e 24
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_014.brep] s
+
+set length 826.867
+set nbsh_v 20
+set nbsh_e 20
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_015.brep] s
+
+set length 830.837
+set nbsh_v 115
+set nbsh_e 115
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_017.brep] s
+
+set length 132.672
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*Offset wire is not closed."
+restore [locate_data_file offset_wire_018.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+restore [locate_data_file offset_wire_019.brep] s
+
+set length 1113.28
+set nbsh_v 221
+set nbsh_e 221
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_020.brep] s
+
+set length 209.1
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*Offset wire is not closed."
+restore [locate_data_file offset_wire_021.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_023.brep] s
+
+set length 67.0006
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_025.brep] s
+
+set length 2358.59
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_028.brep] s
+
+set length 1776.45
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_029.brep] s
+
+set length 1146.21
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_030.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_031.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_036.brep] s
+
+set length 4.60678
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Mandriva2010"] != 0
+ && [string compare $os "Debian40" ] != 0
+ && [string compare $os "Mandriva2008"] != 0
+ } {
+ puts "TODO OCC23068 $os: Faulty shapes in variables faulty_1 to faulty_2"
+}
+
+restore [locate_data_file offset_wire_037.brep] s
+
+set length 985.83
+set nbsh_v 39
+set nbsh_e 39
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_038.brep] s
+
+set length 448.052
+set nbsh_v 67
+set nbsh_e 67
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_039.brep] s
+
+set length 201.174
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*Offset wire is not closed."
+restore [locate_data_file offset_wire_040.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Mandriva2010" ] != 0
+ && [string compare $os "Debian40" ] != 0
+ && [string compare $os "Mandriva2008" ] != 0
+ } {
+ puts "TODO OCC23068 $os: Error : Result shape is WRONG"
+}
+
+restore [locate_data_file offset_wire_041.brep] s
+
+set length 3536.16
+set nbsh_v 622
+set nbsh_e 622
+set nbsh_w 1
+
+
--- /dev/null
+restore [locate_data_file offset_wire_042.brep] s
+
+set length 273.521
+set nbsh_v 23
+set nbsh_e 23
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Windows-32-VC10"] == 0
+ } {
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+} else {
+ puts "TODO OCC23068 $os: Error : result is not a topological shape"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+}
+restore [locate_data_file offset_wire_043.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
+
--- /dev/null
+restore [locate_data_file offset_wire_044.brep] s
+
+set length 33.0816
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_045.brep] s
+
+set length 64.8375
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_046.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_047.brep] s
+
+set length 111.051
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_048.brep] s
+
+set length 209.015
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_049.brep] s
+
+set length 32.5937
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_050.brep] s
+
+set length 6.4907
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_051.brep] s
+
+set length 36.8298
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_052.brep] s
+
+set length 74.8316
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_054.brep] s
+
+set length 202.645
+set nbsh_v 42
+set nbsh_e 42
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_055.brep] s
+
+set length 526.412
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+restore [locate_data_file offset_wire_056.brep] s
+
+set length 1229.28
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_057.brep] s
+
+set length 1033.04
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Mandriva2010"] == 0
+ || [string compare $os "Debian40" ] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ } {
+ puts "TODO OCC23068 $os: Faulty shapes in variables faulty_1 to faulty_26"
+} else {
+ puts "TODO OCC23068 $os: Error : result is not a topological shape"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+}
+restore [locate_data_file offset_wire_059.brep] s
+
+set length 347.204
+set nbsh_v 584
+set nbsh_e 584
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_060.brep] s
+
+set length 15.7022
+set nbsh_v 32
+set nbsh_e 32
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_061.brep] s
+
+set length 2197.63
+set nbsh_v 29
+set nbsh_e 29
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_062.brep] s
+
+set length 436.194
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_063.brep] s
+
+set length 573.077
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_064.brep] s
+
+set length 1005.58
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_065.brep] s
+
+set length 457.109
+set nbsh_v 45
+set nbsh_e 45
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_066.brep] s
+
+set length 94.2743
+set nbsh_v 80
+set nbsh_e 80
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+restore [locate_data_file offset_wire_067.brep] s
+
+set length 24.1867
+set nbsh_v 142
+set nbsh_e 142
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_068.brep] s
+
+set length 1505.81
+set nbsh_v 71
+set nbsh_e 71
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_077.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_078.brep] s
+
+set length 488.408
+set nbsh_v 72
+set nbsh_e 72
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_079.brep] s
+
+set length 111.739
+set nbsh_v 37
+set nbsh_e 37
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_080.brep] s
+
+set length 141.945
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_081.brep] s
+
+set length 401.356
+set nbsh_v 76
+set nbsh_e 76
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_082.brep] s
+
+set length 1077.36
+set nbsh_v 35
+set nbsh_e 35
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_083.brep] s
+
+set length 882.11
+set nbsh_v 28
+set nbsh_e 28
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_084.brep] s
+
+set length 18.1766
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_085.brep] s
+
+set length 283.791
+set nbsh_v 23
+set nbsh_e 23
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_086.brep] s
+
+set length 1150.26
+set nbsh_v 31
+set nbsh_e 31
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_087.brep] s
+
+set length 28.9362
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_088.brep] s
+
+set length 79.7107
+set nbsh_v 32
+set nbsh_e 32
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_089.brep] s
+
+set length 957.767
+set nbsh_v 30
+set nbsh_e 30
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_090.brep] s
+
+set length 395.14
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 2
+
--- /dev/null
+restore [locate_data_file offset_wire_091.brep] s
+
+set length 22.6445
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_092.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_093.brep] s
+
+set length 117.29
+set nbsh_v 24
+set nbsh_e 24
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_094.brep] s
+
+set length 182.056
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_095.brep] s
+
+set length 249.418
+set nbsh_v 21
+set nbsh_e 21
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_096.brep] s
+
+set length 2829.9
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_097.brep] s
+
+set length 1307.78
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_098.brep] s
+
+set length 233.219
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_099.brep] s
+
+set length 302.636
+set nbsh_v 28
+set nbsh_e 28
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_100.brep] s
+
+set length 381.441
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_101.brep] s
+
+set length 206.278
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_102.brep] s
+
+set length 24.9815
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_103.brep] s
+
+set length 338.282
+set nbsh_v 53
+set nbsh_e 53
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_104.brep] s
+
+set length 819.595
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_105.brep] s
+
+set length 837.134
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_106.brep] s
+
+set length 881.066
+set nbsh_v 24
+set nbsh_e 24
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_107.brep] s
+
+set length 334.889
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_108.brep] s
+
+set length 343.316
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_109.brep] s
+
+set length 263.292
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_110.brep] s
+
+set length 1319.29
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_111.brep] s
+
+set length 159.034
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_112.brep] s
+
+set length 888.736
+set nbsh_v 228
+set nbsh_e 228
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_113.brep] s
+
+set length 1198.11
+set nbsh_v 21
+set nbsh_e 21
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_114.brep] s
+
+set length 380.616
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_115.brep] s
+
+set length 264.29
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
--- /dev/null
+set off_param 0.005
+set command "mkoffset"
--- /dev/null
+restore [locate_data_file offset_wire_002.brep] s
+
+set length 280.35
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_003.brep] s
+
+set length 1336.83
+set nbsh_v 128
+set nbsh_e 128
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_004.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_005.brep] s
+
+set length 273.613
+set nbsh_v 35
+set nbsh_e 35
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_006.brep] s
+
+set length 189.027
+set nbsh_v 33
+set nbsh_e 33
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_007.brep] s
+
+set length 290.521
+set nbsh_v 36
+set nbsh_e 36
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_008.brep] s
+
+set length 2348.66
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_012.brep] s
+
+set length 65.4952
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_013.brep] s
+
+set length 2218.86
+set nbsh_v 19
+set nbsh_e 19
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_014.brep] s
+
+set length 927.609
+set nbsh_v 20
+set nbsh_e 20
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_015.brep] s
+
+set length 838.161
+set nbsh_v 55
+set nbsh_e 55
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_017.brep] s
+
+set length 148.835
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_018.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_019.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_020.brep] s
+
+set length 230.563
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result_1"
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+restore [locate_data_file offset_wire_021.brep] s
+
+set length 175.927
+set nbsh_v 31
+set nbsh_e 31
+set nbsh_w 2
+
--- /dev/null
+restore [locate_data_file offset_wire_023.brep] s
+
+set length 74.7711
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_025.brep] s
+
+set length 2565.1
+set nbsh_v 13
+set nbsh_e 13
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_028.brep] s
+
+set length 1991.59
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_029.brep] s
+
+set length 1252.05
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_030.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_031.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_036.brep] s
+
+set length 5.16793
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Mandriva2010" ] != 0
+ && [string compare $os "Debian40" ] != 0
+ && [string compare $os "Mandriva2008" ] != 0
+ } {
+ puts "TODO OCC23068 $os: Faulty shapes in variables faulty_1 to faulty_2"
+ puts "TODO OCC23068 $os: Error : Result shape is WRONG"
+}
+restore [locate_data_file offset_wire_037.brep] s
+
+set length 1105.94
+set nbsh_v 38
+set nbsh_e 38
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_038.brep] s
+
+set length 502.641
+set nbsh_v 67
+set nbsh_e 67
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_039.brep] s
+
+set length 221.429
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_040.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_041.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_042.brep] s
+
+set length 306.846
+set nbsh_v 23
+set nbsh_e 23
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Windows-32-VC10"] == 0
+ } {
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+} else {
+ puts "TODO OCC23068 $os: Error : result is not a topological shape"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+}
+
+restore [locate_data_file offset_wire_043.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
+
+
--- /dev/null
+restore [locate_data_file offset_wire_044.brep] s
+
+set length 37.1121
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_045.brep] s
+
+set length 72.7148
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_046.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_047.brep] s
+
+set length 124.581
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_048.brep] s
+
+set length 234.48
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_049.brep] s
+
+set length 36.5648
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_050.brep] s
+
+set length 7.28151
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_051.brep] s
+
+set length 41.317
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_052.brep] s
+
+set length 83.3437
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_054.brep] s
+
+set length 227.334
+set nbsh_v 42
+set nbsh_e 42
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_055.brep] s
+
+set length 590.548
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+restore [locate_data_file offset_wire_056.brep] s
+
+set length 1377.49
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_057.brep] s
+
+set length 979.315
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 2
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_059.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_060.brep] s
+
+set length 17.6153
+set nbsh_v 32
+set nbsh_e 32
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_061.brep] s
+
+set length 2175.16
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_062.brep] s
+
+set length 487.352
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_063.brep] s
+
+set length 642.737
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_064.brep] s
+
+set length 1128.09
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_065.brep] s
+
+set length 505.248
+set nbsh_v 35
+set nbsh_e 35
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_066.brep] s
+
+set length 105.76
+set nbsh_v 80
+set nbsh_e 80
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_067.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_7"
+restore [locate_data_file offset_wire_068.brep] s
+
+set length 1589.9
+set nbsh_v 49
+set nbsh_e 49
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_077.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_078.brep] s
+
+set length 547.534
+set nbsh_v 53
+set nbsh_e 53
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_079.brep] s
+
+set length 124.878
+set nbsh_v 26
+set nbsh_e 26
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_080.brep] s
+
+set length 159.24
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_081.brep] s
+
+set length 433.038
+set nbsh_v 42
+set nbsh_e 42
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Mandriva2010"] == 0
+ || [string compare $os "Debian40" ] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ } {
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+}
+
+restore [locate_data_file offset_wire_082.brep] s
+
+set length 1201.05
+set nbsh_v 27
+set nbsh_e 27
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_083.brep] s
+
+set length 965.993
+set nbsh_v 23
+set nbsh_e 23
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_084.brep] s
+
+set length 20.3847
+set nbsh_v 24
+set nbsh_e 24
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_085.brep] s
+
+set length 309.271
+set nbsh_v 19
+set nbsh_e 19
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_086.brep] s
+
+set length 1554.92
+set nbsh_v 31
+set nbsh_e 31
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_087.brep] s
+
+set length 32.2304
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_088.brep] s
+
+set length 78.848
+set nbsh_v 23
+set nbsh_e 23
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_089.brep] s
+
+set length 1072.94
+set nbsh_v 25
+set nbsh_e 25
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_090.brep] s
+
+set length 392.505
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_091.brep] s
+
+set length 25.2204
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_092.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_093.brep] s
+
+set length 130.857
+set nbsh_v 22
+set nbsh_e 22
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_094.brep] s
+
+set length 204.236
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_095.brep] s
+
+set length 275.765
+set nbsh_v 21
+set nbsh_e 21
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_096.brep] s
+
+set length 3079.65
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_097.brep] s
+
+set length 1467.11
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_098.brep] s
+
+set length 261.634
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_099.brep] s
+
+set length 325.844
+set nbsh_v 20
+set nbsh_e 20
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_100.brep] s
+
+set length 427.915
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_101.brep] s
+
+set length 231.41
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_102.brep] s
+
+set length 27.7817
+set nbsh_v 14
+set nbsh_e 14
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_103.brep] s
+
+set length 372.476
+set nbsh_v 30
+set nbsh_e 30
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_104.brep] s
+
+set length 916.739
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_105.brep] s
+
+set length 938.45
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_106.brep] s
+
+set length 977.041
+set nbsh_v 19
+set nbsh_e 19
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_107.brep] s
+
+set length 375.691
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_108.brep] s
+
+set length 385.144
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_109.brep] s
+
+set length 295.37
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_110.brep] s
+
+set length 1479.16
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_111.brep] s
+
+set length 174.262
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_112.brep] s
+
+set length 964.381
+set nbsh_v 150
+set nbsh_e 150
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_113.brep] s
+
+set length 1202.97
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_114.brep] s
+
+set length 426.989
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_115.brep] s
+
+set length 296.49
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
--- /dev/null
+set off_param 0.025
+set command "mkoffset"
--- /dev/null
+restore [locate_data_file offset_wire_002.brep] s
+
+set length 356.468
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_003.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_004.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_005.brep] s
+
+set length 347.74
+set nbsh_v 31
+set nbsh_e 31
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_006.brep] s
+
+set length 240.315
+set nbsh_v 32
+set nbsh_e 32
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_007.brep] s
+
+set length 369.4
+set nbsh_v 36
+set nbsh_e 36
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_008.brep] s
+
+set length 2936.76
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_012.brep] s
+
+set length 83.2778
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_013.brep] s
+
+set length 2701.11
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_014.brep] s
+
+set length 1179.46
+set nbsh_v 20
+set nbsh_e 20
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_015.brep] s
+
+set length 1069.89
+set nbsh_v 41
+set nbsh_e 41
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_017.brep] s
+
+set length 189.244
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_018.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_019.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_020.brep] s
+
+set length 286.312
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+restore [locate_data_file offset_wire_021.brep] s
+
+set length 238.72
+set nbsh_v 27
+set nbsh_e 27
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_023.brep] s
+
+set length 94.6562
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_025.brep] s
+
+set length 3285.91
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_028.brep] s
+
+set length 2529.44
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_029.brep] s
+
+set length 1586.48
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_030.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_031.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_036.brep] s
+
+set length 6.57079
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Mandriva2010"] != 0
+ && [string compare $os "Debian40" ] != 0
+ && [string compare $os "Mandriva2008"] != 0
+ } {
+ puts "TODO OCC23068 $os: Faulty shapes in variables faulty_1 to faulty_2"
+ puts "TODO OCC23068 $os: Error : Result shape is WRONG"
+}
+restore [locate_data_file offset_wire_037.brep] s
+
+set length 1406.21
+set nbsh_v 38
+set nbsh_e 38
+set nbsh_w 1
+
+
+
--- /dev/null
+restore [locate_data_file offset_wire_038.brep] s
+
+set length 639.113
+set nbsh_v 67
+set nbsh_e 67
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_039.brep] s
+
+set length 280.089
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_040.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_041.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+restore [locate_data_file offset_wire_042.brep] s
+
+set length 390.158
+set nbsh_v 23
+set nbsh_e 23
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Windows-32-VC10"] == 0
+ } {
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+} else {
+ puts "TODO OCC23068 $os: Error : result is not a topological shape"
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+}
+
+restore [locate_data_file offset_wire_043.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_044.brep] s
+
+set length 47.1885
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_045.brep] s
+
+set length 92.4272
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_046.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_047.brep] s
+
+set length 158.406
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_048.brep] s
+
+set length 297.313
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_049.brep] s
+
+set length 46.4925
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_050.brep] s
+
+set length 9.25335
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_051.brep] s
+
+set length 52.535
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_052.brep] s
+
+set length 95.4289
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_054.brep] s
+
+set length 289.058
+set nbsh_v 42
+set nbsh_e 42
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_055.brep] s
+
+set length 750.888
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+restore [locate_data_file offset_wire_056.brep] s
+
+set length 1748.03
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_057.brep] s
+
+set length 1202.36
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_059.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_060.brep] s
+
+set length 22.2229
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_061.brep] s
+
+set length 2663
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_062.brep] s
+
+set length 618.925
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_063.brep] s
+
+set length 816.771
+set nbsh_v 6
+set nbsh_e 6
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_064.brep] s
+
+set length 1434.38
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_065.brep] s
+
+set length 635.295
+set nbsh_v 31
+set nbsh_e 31
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_066.brep] s
+
+set length 133.596
+set nbsh_v 48
+set nbsh_e 48
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_067.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_068.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_077.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_078.brep] s
+
+set length 593.849
+set nbsh_v 24
+set nbsh_e 24
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_079.brep] s
+
+set length 152.526
+set nbsh_v 22
+set nbsh_e 22
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_080.brep] s
+
+set length 202.475
+set nbsh_v 10
+set nbsh_e 10
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_081.brep] s
+
+set length 546.206
+set nbsh_v 34
+set nbsh_e 34
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Mandriva2010"] == 0
+ || [string compare $os "Debian40" ] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ } {
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+}
+restore [locate_data_file offset_wire_082.brep] s
+
+set length 1516.92
+set nbsh_v 25
+set nbsh_e 25
+set nbsh_w 1
+
+
+
--- /dev/null
+restore [locate_data_file offset_wire_083.brep] s
+
+set length 1060.88
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_084.brep] s
+
+set length 25.3021
+set nbsh_v 5
+set nbsh_e 5
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_085.brep] s
+
+set length 390.827
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_086.brep] s
+
+set length 2606.92
+set nbsh_v 31
+set nbsh_e 31
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_087.brep] s
+
+set length 39.9553
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_088.brep] s
+
+set length 100.243
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_089.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_090.brep] s
+
+set length 513.669
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_091.brep] s
+
+set length 31.8933
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_092.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_093.brep] s
+
+set length 162.676
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_094.brep] s
+
+set length 259.689
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_095.brep] s
+
+set length 288.192
+set nbsh_v 14
+set nbsh_e 14
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_096.brep] s
+
+set length 3858.73
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_097.brep] s
+
+set length 1831.24
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Windows-32-VC8"] == 0
+ } {
+ puts "TODO ?OCC23068 $os: An exception was caught"
+ puts "TODO ?OCC23068 $os: Error : The offset can not be build."
+}
+
+restore [locate_data_file offset_wire_098.brep] s
+
+set length 332.67
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_099.brep] s
+
+set length 406.896
+set nbsh_v 14
+set nbsh_e 14
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_100.brep] s
+
+set length 537.618
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_101.brep] s
+
+set length 294.241
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_102.brep] s
+
+set length 35.2234
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_103.brep] s
+
+set length 459.629
+set nbsh_v 18
+set nbsh_e 18
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_104.brep] s
+
+set length 1163.54
+set nbsh_v 4
+set nbsh_e 4
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_105.brep] s
+
+set length 1191.76
+set nbsh_v 16
+set nbsh_e 16
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_106.brep] s
+
+set length 1232.45
+set nbsh_v 17
+set nbsh_e 17
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_107.brep] s
+
+set length 475.251
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_108.brep] s
+
+set length 487.907
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_109.brep] s
+
+set length 375.566
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_110.brep] s
+
+set length 1879.92
+set nbsh_v 3
+set nbsh_e 3
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_111.brep] s
+
+set length 217.043
+set nbsh_v 8
+set nbsh_e 8
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_112.brep] s
+
+set length 1230.6
+set nbsh_v 126
+set nbsh_e 126
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_113.brep] s
+
+set length 1502.84
+set nbsh_v 11
+set nbsh_e 11
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_114.brep] s
+
+set length 530.167
+set nbsh_v 9
+set nbsh_e 9
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_115.brep] s
+
+set length 373.535
+set nbsh_v 7
+set nbsh_e 7
+set nbsh_w 1
+
+
+
--- /dev/null
+set off_param 0.075
+set command "mkoffset"
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Mandriva2010"] != 0
+ && [string compare $os "Debian40" ] != 0
+ && [string compare $os "Mandriva2008"] != 0
+ } {
+ puts "TODO OCC23068 $os: Error : Result shape is WRONG"
+}
+
+restore [locate_data_file offset_wire_001.brep] s
+set length 8.78837
+set nbsh_v 37
+set nbsh_e 37
+set nbsh_w 1
--- /dev/null
+restore [locate_data_file offset_wire_009.brep] s
+
+set length 522.697
+set nbsh_v 52
+set nbsh_e 52
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_010.brep] s
+
+set length 522.697
+set nbsh_v 22
+set nbsh_e 22
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_011.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_016.brep] s
+
+set length 30.144
+set nbsh_v 15
+set nbsh_e 15
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_022.brep] s
+
+set length 234.171
+set nbsh_v 52
+set nbsh_e 52
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+restore [locate_data_file offset_wire_024.brep] s
+
+set length 40.4005
+set nbsh_v 40
+set nbsh_e 40
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_026.brep] s
+
+set length 21112.9
+set nbsh_v 311
+set nbsh_e 311
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_027.brep] s
+
+set length 63842.4
+set nbsh_v 220
+set nbsh_e 220
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_032.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_033.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_034.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_035.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_053.brep] s
+
+set length 371.303
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_058.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_069.brep] s
+
+set length 888.512
+set nbsh_v 22
+set nbsh_e 22
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Mandriva2010"] != 0
+ && [string compare $os "Debian40" ] != 0
+ && [string compare $os "Mandriva2008"] != 0
+ } {
+ puts "TODO OCC23068 $os: Error : big tolerance of shape result"
+}
+
+restore [locate_data_file offset_wire_070.brep] s
+
+set length 108307
+set nbsh_v 228
+set nbsh_e 228
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+restore [locate_data_file offset_wire_071.brep] s
+
+set length 83216
+set nbsh_v 205
+set nbsh_e 205
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+restore [locate_data_file offset_wire_072.brep] s
+
+set length 116267
+set nbsh_v 301
+set nbsh_e 301
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_2"
+restore [locate_data_file offset_wire_073.brep] s
+
+set length 80332.8
+set nbsh_v 214
+set nbsh_e 214
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: TEST INCOMPLETE"
+restore [locate_data_file offset_wire_074.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] != 0
+ && [string compare $os "Mandriva2008"] != 0
+ && [string compare $os "Mandriva2010"] != 0
+ } {
+ puts "TODO OCC23360 $os: Error : The offset can not be build."
+ puts "TODO OCC23360 $os: An exception was caught"
+ puts "TODO OCC23360 $os: \\*\\* Exception \\*\\*.*"
+} elseif {
+ [string compare $os "Mandriva2008"] == 0
+ || [string compare $os "Mandriva2020"] == 0
+ } {
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+}
+restore [locate_data_file offset_wire_075.brep] s
+
+set length 308.604
+set nbsh_v 88
+set nbsh_e 88
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_076.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+set off_param 0.005
+set command "mkoffset"
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_001.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_009.brep] s
+
+set length 554.733
+set nbsh_v 52
+set nbsh_e 52
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_010.brep] s
+
+set length 554.716
+set nbsh_v 34
+set nbsh_e 34
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_011.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_016.brep] s
+
+set length 31.6702
+set nbsh_v 14
+set nbsh_e 14
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result_2"
+puts "TODO OCC23068 ALL: Error : Result shape is WRONG"
+restore [locate_data_file offset_wire_022.brep] s
+
+set length 230.726
+set nbsh_v 50
+set nbsh_e 50
+set nbsh_w 2
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+restore [locate_data_file offset_wire_024.brep] s
+
+set length 42.8997
+set nbsh_v 40
+set nbsh_e 40
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_026.brep] s
+
+set length 22417.7
+set nbsh_v 317
+set nbsh_e 317
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_48"
+puts "TODO OCC23068 ALL: Error : Result shape is WRONG"
+restore [locate_data_file offset_wire_027.brep] s
+
+set length 67864.4
+set nbsh_v 228
+set nbsh_e 228
+set nbsh_w 1
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_032.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_033.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_034.brep] s
+
+set length 738.873
+set nbsh_v 306
+set nbsh_e 306
+set nbsh_w 5
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_035.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_053.brep] s
+
+set length 394.271
+set nbsh_v 12
+set nbsh_e 12
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_058.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_069.brep] s
+
+set length 943.475
+set nbsh_v 22
+set nbsh_e 22
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_070.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_071.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_072.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_073.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: TEST INCOMPLETE"
+restore [locate_data_file offset_wire_074.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] != 0
+ } {
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+}
+
+restore [locate_data_file offset_wire_075.brep] s
+
+set length 326.251
+set nbsh_v 104
+set nbsh_e 104
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_076.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+set off_param 0.025
+set command "mkoffset"
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_001.brep] s
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_009.brep] s
+
+set length 634.956
+set nbsh_v 49
+set nbsh_e 49
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_010.brep] s
+
+set length 634.927
+set nbsh_v 25
+set nbsh_e 25
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_011.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_016.brep] s
+
+set length 36.0211
+set nbsh_v 14
+set nbsh_e 14
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result_2"
+puts "TODO OCC23068 ALL: Error : The length of result shape is"
+puts "TODO OCC23068 ALL: Error : Result shape is WRONG"
+
+restore [locate_data_file offset_wire_022.brep] s
+
+set length 238.448
+set nbsh_v 40
+set nbsh_e 40
+set nbsh_w 2
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+restore [locate_data_file offset_wire_024.brep] s
+
+set length 49.1476
+set nbsh_v 40
+set nbsh_e 40
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : big tolerance of shape result"
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Mandriva2010"] == 0
+ || [string compare $os "Debian40" ] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ } {
+ puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_42"
+} else {
+ puts "TODO OCC23068 ALL: Faulty shapes in variables faulty_1 to faulty_43"
+}
+
+
+restore [locate_data_file offset_wire_026.brep] s
+
+set length 25688.3
+set nbsh_v 319
+set nbsh_e 319
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The length of result shape is"
+puts "TODO OCC23068 ALL: Error : Result shape is WRONG"
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Mandriva2010"] == 0
+ || [string compare $os "Debian40" ] == 0
+ || [string compare $os "Mandriva2008"] == 0
+ } {
+ puts "TODO OCC23068 $os: Faulty shapes in variables faulty_1 to faulty_26"
+} else {
+ puts "TODO OCC23068 $os: Faulty shapes in variables faulty_1 to faulty_27"
+}
+
+restore [locate_data_file offset_wire_027.brep] s
+
+set length 80555.7
+set nbsh_v 217
+set nbsh_e 217
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_032.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_033.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_034.brep] s
+
+set length 702.216
+set nbsh_v 60
+set nbsh_e 60
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_035.brep] s
+
+set length 702.225
+set nbsh_v 55
+set nbsh_e 55
+set nbsh_w 1
+
--- /dev/null
+restore [locate_data_file offset_wire_053.brep] s
+
+set length 450.841
+set nbsh_v 44
+set nbsh_e 44
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_058.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+restore [locate_data_file offset_wire_069.brep] s
+
+set length 1080.88
+set nbsh_v 22
+set nbsh_e 22
+set nbsh_w 1
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_070.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_071.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_072.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+puts "TODO OCC23068 ALL: An exception was caught"
+puts "TODO OCC23068 ALL: \\*\\* Exception \\*\\*.*"
+restore [locate_data_file offset_wire_073.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+puts "TODO OCC23068 ALL: TEST INCOMPLETE"
+restore [locate_data_file offset_wire_074.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+set os "ALL"
+if {[array get env os_type] != ""} {
+ set os $env(os_type)
+}
+
+if {
+ [string compare $os "Debian40"] != 0
+ } {
+ puts "TODO OCC23068 $os: Error : The offset can not be build."
+ puts "TODO OCC23068 $os: An exception was caught"
+ puts "TODO OCC23068 $os: \\*\\* Exception \\*\\*.*"
+}
+
+restore [locate_data_file offset_wire_075.brep] s
+
+set length 368.064
+set nbsh_v 76
+set nbsh_e 76
+set nbsh_w 1
+
+
+
--- /dev/null
+puts "TODO OCC23068 ALL: Error : result is not a topological shape"
+puts "TODO OCC23068 ALL: Error : The offset can not be build."
+restore [locate_data_file offset_wire_076.brep] s
+
+set length 0
+set nbsh_v 0
+set nbsh_e 0
+set nbsh_w 0
+
--- /dev/null
+set off_param 0.075
+set command "mkoffset"