mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0023298: Integration of test grid "off" into the new testing system
This commit is contained in:
parent
15f88c1218
commit
5805221e14
@ -1,17 +1,17 @@
|
||||
# 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
|
||||
|
178
tests/offset/end
178
tests/offset/end
@ -1,48 +1,146 @@
|
||||
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] } {
|
||||
regexp {Mass +: +([-0-9.+eE]+)} [vprops s] full sm
|
||||
regexp {Mass +: +([-0-9.+eE]+)} [vprops result] full m
|
||||
if { [isdraw result] && $mist == 0} {
|
||||
if { [info exists command] && [string compare $command "mkoffset"] == 0 } {
|
||||
regexp {Mass +: +([-0-9.+eE]+)} [lprops 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."
|
||||
}
|
||||
set vertex_list [explode result v]
|
||||
set ll_v [llength $vertex_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."
|
||||
}
|
||||
}
|
||||
}
|
||||
set edge_list [explode result e]
|
||||
set ll_e [llength $edge_list]
|
||||
|
||||
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
|
||||
}
|
||||
set wire_list [explode result w]
|
||||
if { [string compare $wire_list ""] == 0} {
|
||||
set wire_list result
|
||||
}
|
||||
set ll_w [llength $wire_list]
|
||||
|
||||
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 { [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
|
||||
|
@ -11,7 +11,7 @@ if {
|
||||
|| [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 \\*\\*"
|
||||
|
@ -3,4 +3,13 @@
|
||||
003 faces_type_i
|
||||
004 shape_type_a
|
||||
005 shape_type_i
|
||||
006 shape
|
||||
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
|
||||
|
@ -1,5 +1,4 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/A1
Normal file
7
tests/offset/wire_closed_inside_0_005/A1
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/A2
Normal file
7
tests/offset/wire_closed_inside_0_005/A2
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
10
tests/offset/wire_closed_inside_0_005/A3
Normal file
10
tests/offset/wire_closed_inside_0_005/A3
Normal file
@ -0,0 +1,10 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/A4
Normal file
7
tests/offset/wire_closed_inside_0_005/A4
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/A5
Normal file
7
tests/offset/wire_closed_inside_0_005/A5
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/A6
Normal file
7
tests/offset/wire_closed_inside_0_005/A6
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/A7
Normal file
7
tests/offset/wire_closed_inside_0_005/A7
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/A8
Normal file
7
tests/offset/wire_closed_inside_0_005/A8
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/A9
Normal file
7
tests/offset/wire_closed_inside_0_005/A9
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/B1
Normal file
7
tests/offset/wire_closed_inside_0_005/B1
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/B2
Normal file
7
tests/offset/wire_closed_inside_0_005/B2
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/B3
Normal file
7
tests/offset/wire_closed_inside_0_005/B3
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
9
tests/offset/wire_closed_inside_0_005/B4
Normal file
9
tests/offset/wire_closed_inside_0_005/B4
Normal file
@ -0,0 +1,9 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/B5
Normal file
7
tests/offset/wire_closed_inside_0_005/B5
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/B6
Normal file
7
tests/offset/wire_closed_inside_0_005/B6
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
8
tests/offset/wire_closed_inside_0_005/B7
Normal file
8
tests/offset/wire_closed_inside_0_005/B7
Normal file
@ -0,0 +1,8 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/B8
Normal file
7
tests/offset/wire_closed_inside_0_005/B8
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/B9
Normal file
7
tests/offset/wire_closed_inside_0_005/B9
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/C1
Normal file
7
tests/offset/wire_closed_inside_0_005/C1
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/C2
Normal file
7
tests/offset/wire_closed_inside_0_005/C2
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
10
tests/offset/wire_closed_inside_0_005/C3
Normal file
10
tests/offset/wire_closed_inside_0_005/C3
Normal file
@ -0,0 +1,10 @@
|
||||
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
|
||||
|
9
tests/offset/wire_closed_inside_0_005/C4
Normal file
9
tests/offset/wire_closed_inside_0_005/C4
Normal file
@ -0,0 +1,9 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/C5
Normal file
7
tests/offset/wire_closed_inside_0_005/C5
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/C6
Normal file
7
tests/offset/wire_closed_inside_0_005/C6
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/C7
Normal file
7
tests/offset/wire_closed_inside_0_005/C7
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/C8
Normal file
7
tests/offset/wire_closed_inside_0_005/C8
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
10
tests/offset/wire_closed_inside_0_005/C9
Normal file
10
tests/offset/wire_closed_inside_0_005/C9
Normal file
@ -0,0 +1,10 @@
|
||||
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
|
||||
|
24
tests/offset/wire_closed_inside_0_005/D1
Normal file
24
tests/offset/wire_closed_inside_0_005/D1
Normal file
@ -0,0 +1,24 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/D2
Normal file
7
tests/offset/wire_closed_inside_0_005/D2
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
27
tests/offset/wire_closed_inside_0_005/D3
Normal file
27
tests/offset/wire_closed_inside_0_005/D3
Normal file
@ -0,0 +1,27 @@
|
||||
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
|
||||
|
||||
|
||||
|
7
tests/offset/wire_closed_inside_0_005/D4
Normal file
7
tests/offset/wire_closed_inside_0_005/D4
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/D5
Normal file
7
tests/offset/wire_closed_inside_0_005/D5
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
9
tests/offset/wire_closed_inside_0_005/D6
Normal file
9
tests/offset/wire_closed_inside_0_005/D6
Normal file
@ -0,0 +1,9 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/D7
Normal file
7
tests/offset/wire_closed_inside_0_005/D7
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/D8
Normal file
7
tests/offset/wire_closed_inside_0_005/D8
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/D9
Normal file
7
tests/offset/wire_closed_inside_0_005/D9
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/E1
Normal file
7
tests/offset/wire_closed_inside_0_005/E1
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/E2
Normal file
7
tests/offset/wire_closed_inside_0_005/E2
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/E3
Normal file
7
tests/offset/wire_closed_inside_0_005/E3
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/E4
Normal file
7
tests/offset/wire_closed_inside_0_005/E4
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/E5
Normal file
7
tests/offset/wire_closed_inside_0_005/E5
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/E6
Normal file
7
tests/offset/wire_closed_inside_0_005/E6
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/E7
Normal file
7
tests/offset/wire_closed_inside_0_005/E7
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
9
tests/offset/wire_closed_inside_0_005/E8
Normal file
9
tests/offset/wire_closed_inside_0_005/E8
Normal file
@ -0,0 +1,9 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/E9
Normal file
7
tests/offset/wire_closed_inside_0_005/E9
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/F1
Normal file
7
tests/offset/wire_closed_inside_0_005/F1
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/F2
Normal file
7
tests/offset/wire_closed_inside_0_005/F2
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/F3
Normal file
7
tests/offset/wire_closed_inside_0_005/F3
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/F4
Normal file
7
tests/offset/wire_closed_inside_0_005/F4
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/F5
Normal file
7
tests/offset/wire_closed_inside_0_005/F5
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/F6
Normal file
7
tests/offset/wire_closed_inside_0_005/F6
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
8
tests/offset/wire_closed_inside_0_005/F7
Normal file
8
tests/offset/wire_closed_inside_0_005/F7
Normal file
@ -0,0 +1,8 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/F8
Normal file
7
tests/offset/wire_closed_inside_0_005/F8
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
9
tests/offset/wire_closed_inside_0_005/F9
Normal file
9
tests/offset/wire_closed_inside_0_005/F9
Normal file
@ -0,0 +1,9 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/G1
Normal file
7
tests/offset/wire_closed_inside_0_005/G1
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/G2
Normal file
7
tests/offset/wire_closed_inside_0_005/G2
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/G3
Normal file
7
tests/offset/wire_closed_inside_0_005/G3
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/G4
Normal file
7
tests/offset/wire_closed_inside_0_005/G4
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/G5
Normal file
7
tests/offset/wire_closed_inside_0_005/G5
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/G6
Normal file
7
tests/offset/wire_closed_inside_0_005/G6
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/G7
Normal file
7
tests/offset/wire_closed_inside_0_005/G7
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/G8
Normal file
7
tests/offset/wire_closed_inside_0_005/G8
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/G9
Normal file
7
tests/offset/wire_closed_inside_0_005/G9
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/H1
Normal file
7
tests/offset/wire_closed_inside_0_005/H1
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/H2
Normal file
7
tests/offset/wire_closed_inside_0_005/H2
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/H3
Normal file
7
tests/offset/wire_closed_inside_0_005/H3
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/H4
Normal file
7
tests/offset/wire_closed_inside_0_005/H4
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/H5
Normal file
7
tests/offset/wire_closed_inside_0_005/H5
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
10
tests/offset/wire_closed_inside_0_005/H6
Normal file
10
tests/offset/wire_closed_inside_0_005/H6
Normal file
@ -0,0 +1,10 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/H7
Normal file
7
tests/offset/wire_closed_inside_0_005/H7
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/H8
Normal file
7
tests/offset/wire_closed_inside_0_005/H8
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/H9
Normal file
7
tests/offset/wire_closed_inside_0_005/H9
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/I1
Normal file
7
tests/offset/wire_closed_inside_0_005/I1
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/I2
Normal file
7
tests/offset/wire_closed_inside_0_005/I2
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/I3
Normal file
7
tests/offset/wire_closed_inside_0_005/I3
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/I4
Normal file
7
tests/offset/wire_closed_inside_0_005/I4
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/I5
Normal file
7
tests/offset/wire_closed_inside_0_005/I5
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/I6
Normal file
7
tests/offset/wire_closed_inside_0_005/I6
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/I7
Normal file
7
tests/offset/wire_closed_inside_0_005/I7
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
26
tests/offset/wire_closed_inside_0_005/I8
Normal file
26
tests/offset/wire_closed_inside_0_005/I8
Normal file
@ -0,0 +1,26 @@
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
7
tests/offset/wire_closed_inside_0_005/I9
Normal file
7
tests/offset/wire_closed_inside_0_005/I9
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/J1
Normal file
7
tests/offset/wire_closed_inside_0_005/J1
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/J2
Normal file
7
tests/offset/wire_closed_inside_0_005/J2
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/J3
Normal file
7
tests/offset/wire_closed_inside_0_005/J3
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/J4
Normal file
7
tests/offset/wire_closed_inside_0_005/J4
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/J5
Normal file
7
tests/offset/wire_closed_inside_0_005/J5
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/J6
Normal file
7
tests/offset/wire_closed_inside_0_005/J6
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/J7
Normal file
7
tests/offset/wire_closed_inside_0_005/J7
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/J8
Normal file
7
tests/offset/wire_closed_inside_0_005/J8
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/J9
Normal file
7
tests/offset/wire_closed_inside_0_005/J9
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/K1
Normal file
7
tests/offset/wire_closed_inside_0_005/K1
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
7
tests/offset/wire_closed_inside_0_005/K2
Normal file
7
tests/offset/wire_closed_inside_0_005/K2
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
2
tests/offset/wire_closed_inside_0_005/begin
Normal file
2
tests/offset/wire_closed_inside_0_005/begin
Normal file
@ -0,0 +1,2 @@
|
||||
set off_param -0.005
|
||||
set command "mkoffset"
|
7
tests/offset/wire_closed_inside_0_025/A1
Normal file
7
tests/offset/wire_closed_inside_0_025/A1
Normal file
@ -0,0 +1,7 @@
|
||||
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
|
||||
|
9
tests/offset/wire_closed_inside_0_025/A2
Normal file
9
tests/offset/wire_closed_inside_0_025/A2
Normal file
@ -0,0 +1,9 @@
|
||||
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
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user