mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
0023273: Avoid failures due to datadir commend when data files are not present
Fix for #23273 issue. Fix for #23273 issue (boolean/013/R9). Modifications of tests according to #23260 issue. Attempt to protect against hang-ups due to waiting for standard input change of behaviour of offset/shape_type_i/D7 case. Attempt to protect against hang-ups during initialization of menu in batch mode. increase cpulimit for parallel incmesh. #23260 is fixed. count_parallel is not needed anymore. Deleted unused code. change of behaviour of offset/shape_type_i/D7 case. The fix was incorrect. Second attempt to protect against hang-ups during initialization of menu in batch mode correction of tests in order to awoid instability. Elapsed time changed to CPU user time is performance tests. Processing of errors on Windows. Stop cpulimit killer if armed by test, after the test is completed
This commit is contained in:
parent
f67d0512ac
commit
8418c61723
@ -15,6 +15,8 @@
|
||||
# purpose or non-infringement. Please see the License for the specific terms
|
||||
# and conditions governing the rights and limitations under the License.
|
||||
|
||||
if { [info commands addmenu] == "" } { return }
|
||||
|
||||
addmenu Curves "Line" {
|
||||
dialbox line name l origin {0 0 0} direction {1 0 0}
|
||||
}
|
||||
|
@ -15,6 +15,8 @@
|
||||
# purpose or non-infringement. Please see the License for the specific terms
|
||||
# and conditions governing the rights and limitations under the License.
|
||||
|
||||
if { [info commands addmenu] == "" } { return }
|
||||
|
||||
proc dialanasurf {command sname args} {
|
||||
set com "dialbox $command name $sname origin {0 0 0} normal {0 0 1} xdir {1 0 0} "
|
||||
foreach l $args {append com " $l"}
|
||||
|
@ -16,5 +16,5 @@
|
||||
# and conditions governing the rights and limitations under the License.
|
||||
|
||||
set Draw_GEOMETRY 1
|
||||
catch {source $env(CASROOT)/src/DrawResources/CURVES.tcl}
|
||||
catch {source $env(CASROOT)/src/DrawResources/SURFACES.tcl}
|
||||
source $env(CASROOT)/src/DrawResources/CURVES.tcl
|
||||
source $env(CASROOT)/src/DrawResources/SURFACES.tcl
|
||||
|
@ -324,10 +324,15 @@ proc testgrid {logdir args} {
|
||||
# final 'exit' is needed when running on Linux under VirtualGl
|
||||
puts $fd_cmd "exit"
|
||||
close $fd_cmd
|
||||
set command "exec DRAWEXE -f $logdir/$group/$grid/${casename}.tcl"
|
||||
|
||||
# commant to run DRAW with a command file;
|
||||
# note that empty string is passed as standard input to avoid possible
|
||||
# hang-ups due to waiting for stdin of the launching process
|
||||
set command "exec <<{} DRAWEXE -f $logdir/$group/$grid/${casename}.tcl"
|
||||
|
||||
# alternative method to run without temporary file; disabled as it needs too many backslashes
|
||||
# else {
|
||||
# set command "exec DRAWEXE -c $imgdir_cmd\\\; set test_image $casename\\\; \
|
||||
# set command "exec <<\"\" DRAWEXE -c $imgdir_cmd\\\; set test_image $casename\\\; \
|
||||
# _run_test $dir $group $grid $casefile\\\; \
|
||||
# puts \\\[dlog get\\\]\\\; exit"
|
||||
# }
|
||||
@ -506,24 +511,11 @@ proc _run_test {scriptsdir group gridname casefile} {
|
||||
}
|
||||
}
|
||||
|
||||
# set datadir for this test case
|
||||
if { [info exists env(CSF_TestDataPath)] } {
|
||||
foreach ddir [regsub -all ";" [regsub "\\\\" $env(CSF_TestDataPath) "/"] " "] {
|
||||
if { [file isdirectory $ddir/$group] } {
|
||||
set save_datadir [datadir]
|
||||
datadir $ddir/$group
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
if { ! [info exists save_datadir] } {
|
||||
puts "Warning: no data directory found for group $group in path defined by CSF_TestDataPath"
|
||||
set save_datadir [datadir]
|
||||
}
|
||||
|
||||
# evaluate test case
|
||||
if [catch {
|
||||
uplevel set casename [file tail $casefile]
|
||||
uplevel set groupname $group
|
||||
uplevel set gridname $gridname
|
||||
|
||||
if { [file exists $scriptsdir/$group/begin] } {
|
||||
puts "Executing $scriptsdir/$group/begin..."; flush stdout
|
||||
@ -549,8 +541,6 @@ proc _run_test {scriptsdir group gridname casefile} {
|
||||
puts "Tcl Exception: $res"
|
||||
}
|
||||
|
||||
datadir $save_datadir
|
||||
|
||||
# stop logging
|
||||
if { $dlog_exists } {
|
||||
rename puts {}
|
||||
@ -558,6 +548,9 @@ proc _run_test {scriptsdir group gridname casefile} {
|
||||
dlog off
|
||||
}
|
||||
|
||||
# stop cpulimit killer if armed by the test
|
||||
cpulimit
|
||||
|
||||
# add timing info
|
||||
uplevel dchrono _timer stop
|
||||
set time [uplevel dchrono _timer show]
|
||||
@ -1154,44 +1147,46 @@ proc _path_separator {} {
|
||||
# environment variable CSF_TestDataPath
|
||||
# If file is not found, raises Tcl error.
|
||||
proc locate_data_file {filename} {
|
||||
global env
|
||||
global env groupname gridname casename
|
||||
|
||||
set scriptfile [info script]
|
||||
if { $scriptfile == "" } {
|
||||
error "Error: This procedure (locate_data_file) is for use only in test scripts!"
|
||||
}
|
||||
|
||||
# look in subdirectories 'data' of grid and group directories
|
||||
set scriptdir [file normalize [file dirname $scriptfile]]
|
||||
if { [file tail $scriptdir] == "data" } {
|
||||
if [file exists $scriptdir/$filename] {
|
||||
return $scriptdir/$filename
|
||||
# check sub-directories data of the test case grid directory
|
||||
# the current test case in paths indicated by CSF_TestScriptsPath
|
||||
if { [info exists groupname] && [info exists gridname] &&
|
||||
[info exists env(CSF_TestScriptsPath)] } {
|
||||
foreach dir [_split_path $env(CSF_TestScriptsPath)] {
|
||||
if { [file exists $dir/$groupname/$gridname/data/$filename] } {
|
||||
return [file normalize $dir/$groupname/$gridname/data/$filename]
|
||||
}
|
||||
if { [file exists $dir/$groupname/data/$filename] } {
|
||||
return [file normalize $dir/$groupname/data/$filename]
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if [file exists $scriptdir/data/$filename] {
|
||||
return [file normalize $scriptdir/data/$filename]
|
||||
}
|
||||
}
|
||||
if [file exists $scriptdir/../data/$filename] {
|
||||
return [file normalize $scriptdir/../data/$filename]
|
||||
}
|
||||
|
||||
# check sub-directories corresponding to group and grid of
|
||||
# the current test case in paths indicated by CSF_TestDataPath
|
||||
if [info exists env(CSF_TestDataPath)] {
|
||||
set grid [file tail $scriptdir]
|
||||
set group [file tail [file dirname $scriptdir]]
|
||||
if { [info exists groupname] && [info exists env(CSF_TestDataPath)] } {
|
||||
foreach dir [_split_path $env(CSF_TestDataPath)] {
|
||||
if [file exists $dir/$group/$grid/$filename] {
|
||||
return [file normalize $dir/$group/$grid/$filename]
|
||||
if { [info exists gridname] && [file exists $dir/$groupname/$gridname/$filename] } {
|
||||
return [file normalize $dir/$groupname/$gridname/$filename]
|
||||
}
|
||||
if [file exists $dir/$group/$filename] {
|
||||
return [file normalize $dir/$group/$filename]
|
||||
if { [file exists $dir/$groupname/$filename] } {
|
||||
return [file normalize $dir/$groupname/$filename]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# check datadir
|
||||
if { [file exists [uplevel datadir]/$filename] } {
|
||||
return [uplevel datadir]/$filename
|
||||
}
|
||||
|
||||
# raise error
|
||||
error [join [list "Error: file $filename could not be found neither in script" \
|
||||
"directories nor in paths indicated by CSF_TestDataPath environment variable"] "\n"]
|
||||
}
|
||||
}
|
||||
|
12
tests/3rdparty/begin
vendored
12
tests/3rdparty/begin
vendored
@ -1,7 +1,3 @@
|
||||
if { [string compare [datadir] "."] == 0 } {
|
||||
datadir [file dirname [info script]]/data
|
||||
}
|
||||
|
||||
cpulimit 1000
|
||||
|
||||
if { [array get Draw_Groups "Primitive building commands"] == "" } {
|
||||
@ -19,12 +15,4 @@ if { [info exists test_image ] == 0 } {
|
||||
set test_image photo
|
||||
}
|
||||
|
||||
if { [info exists WorkDirectory] == 0 } {
|
||||
set WorkDirectory "/tmp"
|
||||
if { [array get env TEMP] != "" } {
|
||||
set WorkDirectory "$env(TEMP)"
|
||||
}
|
||||
}
|
||||
|
||||
vinit
|
||||
|
||||
|
4
tests/3rdparty/export/A1
vendored
4
tests/3rdparty/export/A1
vendored
@ -8,11 +8,11 @@ if { [array get Draw_Groups "XSTEP-STL/VRML"] == "" } {
|
||||
pload XSDRAW
|
||||
}
|
||||
|
||||
meshfromstl m [datadir]/shape.stl
|
||||
meshfromstl m [locate_data_file shape.stl]
|
||||
|
||||
meshdispmode m 34
|
||||
|
||||
set aFile $WorkDirectory/shape.pdf
|
||||
set aFile $imagedir/shape.pdf
|
||||
|
||||
set format PDF
|
||||
|
||||
|
2
tests/3rdparty/export/A2
vendored
2
tests/3rdparty/export/A2
vendored
@ -30,7 +30,7 @@ vaxis ax1 100 100 100 100 100 0
|
||||
box a 110 110 110 200 200 200
|
||||
vdisplay a
|
||||
|
||||
set aFile $WorkDirectory/ExportToPDF.pdf
|
||||
set aFile $imagedir/ExportToPDF.pdf
|
||||
|
||||
set format PDF
|
||||
|
||||
|
2
tests/3rdparty/export/A3
vendored
2
tests/3rdparty/export/A3
vendored
@ -30,7 +30,7 @@ vaxis ax1 100 100 100 100 100 0
|
||||
box a 110 110 110 200 200 200
|
||||
vdisplay a
|
||||
|
||||
set aFile $WorkDirectory/ExportToPS.ps
|
||||
set aFile $imagedir/ExportToPS.ps
|
||||
|
||||
set format PS
|
||||
|
||||
|
2
tests/3rdparty/export/A4
vendored
2
tests/3rdparty/export/A4
vendored
@ -30,7 +30,7 @@ vaxis ax1 100 100 100 100 100 0
|
||||
box a 110 110 110 200 200 200
|
||||
vdisplay a
|
||||
|
||||
set aFile $WorkDirectory/ExportToEPS.eps
|
||||
set aFile $imagedir/ExportToEPS.eps
|
||||
|
||||
set format EPS
|
||||
|
||||
|
2
tests/3rdparty/export/A5
vendored
2
tests/3rdparty/export/A5
vendored
@ -30,7 +30,7 @@ vaxis ax1 100 100 100 100 100 0
|
||||
box a 110 110 110 200 200 200
|
||||
vdisplay a
|
||||
|
||||
set aFile $WorkDirectory/ExportToTEX.tex
|
||||
set aFile $imagedir/ExportToTEX.tex
|
||||
|
||||
set format TEX
|
||||
|
||||
|
2
tests/3rdparty/export/A6
vendored
2
tests/3rdparty/export/A6
vendored
@ -30,7 +30,7 @@ vaxis ax1 100 100 100 100 100 0
|
||||
box a 110 110 110 200 200 200
|
||||
vdisplay a
|
||||
|
||||
set aFile $WorkDirectory/ExportToSVG.svg
|
||||
set aFile $imagedir/ExportToSVG.svg
|
||||
|
||||
set format SVG
|
||||
|
||||
|
2
tests/3rdparty/export/A7
vendored
2
tests/3rdparty/export/A7
vendored
@ -30,7 +30,7 @@ vaxis ax1 100 100 100 100 100 0
|
||||
box a 110 110 110 200 200 200
|
||||
vdisplay a
|
||||
|
||||
set aFile $WorkDirectory/ExportToPGF.pgf
|
||||
set aFile $imagedir/ExportToPGF.pgf
|
||||
|
||||
set format PGF
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
#cut s s1 s2
|
||||
#save s L12.draw
|
||||
|
||||
restore L12.draw s
|
||||
restore [locate_data_file L12.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
2
tests/blend/buildevol/F9
Executable file → Normal file
2
tests/blend/buildevol/F9
Executable file → Normal file
@ -1,4 +1,4 @@
|
||||
restore 2_O12.draw s
|
||||
restore [locate_data_file 2_O12.draw] s
|
||||
explode s e
|
||||
|
||||
mkevol result s
|
||||
|
@ -4,7 +4,7 @@
|
||||
#cut s s1 s2
|
||||
#save s A1234.draw
|
||||
|
||||
restore A1234.draw s
|
||||
restore [locate_data_file A1234.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -4,7 +4,7 @@
|
||||
#fuse s s1 s2
|
||||
#save s A5678.draw
|
||||
|
||||
restore A5678.draw s
|
||||
restore [locate_data_file A5678.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
#cut s s1 s2
|
||||
#save s B1234.draw
|
||||
|
||||
restore B1234.draw s
|
||||
restore [locate_data_file B1234.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
#fuse s s1 s2
|
||||
#save s B5678.draw
|
||||
|
||||
restore B5678.draw s
|
||||
restore [locate_data_file B5678.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
#fuse s s1 s2
|
||||
#save s C5678.draw
|
||||
|
||||
restore C5678.draw s
|
||||
restore [locate_data_file C5678.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
#cut s s1 s2
|
||||
#save s D1234.draw
|
||||
|
||||
restore D1234.draw s
|
||||
restore [locate_data_file D1234.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -4,7 +4,7 @@
|
||||
#fuse s s1 s2
|
||||
#save s D5678.draw
|
||||
|
||||
restore D5678.draw s
|
||||
restore [locate_data_file D5678.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
#fuse s s1 s2
|
||||
#save s E5678.draw
|
||||
|
||||
restore E5678.draw s
|
||||
restore [locate_data_file E5678.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
#cut s s1 s2
|
||||
#save s F1234.draw
|
||||
|
||||
restore F1234.draw s
|
||||
restore [locate_data_file F1234.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
#fuse s s1 s2
|
||||
#save s F5678.draw
|
||||
|
||||
restore F5678.draw s
|
||||
restore [locate_data_file F5678.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -6,7 +6,7 @@
|
||||
#cut s s1 s2
|
||||
#save s G1234.draw
|
||||
|
||||
restore G1234.draw s
|
||||
restore [locate_data_file G1234.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -6,7 +6,7 @@
|
||||
#fuse s s1 s2
|
||||
#save s G5678.draw
|
||||
|
||||
restore G5678.draw s
|
||||
restore [locate_data_file G5678.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
#cut s s1 s2
|
||||
#save s H1234.draw
|
||||
|
||||
restore H1234.draw s
|
||||
restore [locate_data_file H1234.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
#fuse s s1 s2
|
||||
#save s H5678.draw
|
||||
|
||||
restore H5678.draw s
|
||||
restore [locate_data_file H5678.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
#cut s s1 s2
|
||||
#save s I1234.draw
|
||||
|
||||
restore I1234.draw s
|
||||
restore [locate_data_file I1234.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
#fuse s s1 s2
|
||||
#save s I5678.draw
|
||||
|
||||
restore I5678.draw s
|
||||
restore [locate_data_file I5678.draw] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -3,7 +3,7 @@
|
||||
#ttranslate c 0 0 10
|
||||
#fuse s b c
|
||||
|
||||
restore 6_A1234.draw s
|
||||
restore [locate_data_file 6_A1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -3,7 +3,7 @@
|
||||
#ttranslate c 0 0 10
|
||||
#fuse s b c
|
||||
|
||||
restore 6_A1234.draw s
|
||||
restore [locate_data_file 6_A1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -8,7 +8,7 @@
|
||||
#fuse s f1 c
|
||||
#donly s
|
||||
|
||||
restore 6_A56.draw s
|
||||
restore [locate_data_file 6_A56.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -2,7 +2,7 @@
|
||||
#pcone c 13 5 20
|
||||
#fuse s b c
|
||||
|
||||
restore 6_B1234.draw s
|
||||
restore [locate_data_file 6_B1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -2,7 +2,7 @@
|
||||
#pcone c 13 5 20
|
||||
#fuse s b c
|
||||
|
||||
restore 6_B1234.draw s
|
||||
restore [locate_data_file 6_B1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -7,7 +7,7 @@
|
||||
#fuse s f1 c
|
||||
#donly s
|
||||
|
||||
restore 6_B56.draw s
|
||||
restore [locate_data_file 6_B56.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -1,7 +1,7 @@
|
||||
#box b -15 -15 -15 30 30 15
|
||||
#psphere s 13 0 90
|
||||
#fuse s s b
|
||||
restore 6_C1234.draw s
|
||||
restore [locate_data_file 6_C1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -2,7 +2,7 @@
|
||||
#psphere s 13 0 90
|
||||
#fuse s s b
|
||||
|
||||
restore 6_C1234.draw s
|
||||
restore [locate_data_file 6_C1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -6,7 +6,7 @@
|
||||
#ttranslate c 0 0 -10
|
||||
#fuse s f1 c
|
||||
|
||||
restore 6_C56.draw s
|
||||
restore [locate_data_file 6_C56.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -2,7 +2,7 @@
|
||||
#ptorus s 20 5 0 90
|
||||
#fuse s s b
|
||||
|
||||
restore 6_D1234.draw s
|
||||
restore [locate_data_file 6_D1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -2,7 +2,7 @@
|
||||
#ptorus s 20 5 0 90
|
||||
#fuse s s b
|
||||
|
||||
restore 6_D1234.draw s
|
||||
restore [locate_data_file 6_D1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -6,7 +6,7 @@
|
||||
#ttranslate c 0 0 -10
|
||||
#fuse s f1 c
|
||||
|
||||
restore 6_D56.draw s
|
||||
restore [locate_data_file 6_D56.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -6,7 +6,7 @@
|
||||
#trotate s 0 0 0 1 1 0 -40
|
||||
#trotate s 0 0 0 0 0 1 -10
|
||||
|
||||
restore 6_E1234.draw s
|
||||
restore [locate_data_file 6_E1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -6,7 +6,7 @@
|
||||
#trotate s 0 0 0 1 1 0 -40
|
||||
#trotate s 0 0 0 0 0 1 -10
|
||||
|
||||
restore 6_E1234.draw s
|
||||
restore [locate_data_file 6_E1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -13,7 +13,7 @@
|
||||
#explode s F
|
||||
#glue s c s c_3 s_2
|
||||
|
||||
restore 6_E56.draw s
|
||||
restore [locate_data_file 6_E56.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -6,7 +6,7 @@
|
||||
#prism f w 2 0 30
|
||||
#fuse s f b
|
||||
|
||||
restore 6_F1234.draw s
|
||||
restore [locate_data_file 6_F1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -6,7 +6,7 @@
|
||||
#prism f w 2 0 30
|
||||
#fuse s f b
|
||||
|
||||
restore 6_F1234.draw s
|
||||
restore [locate_data_file 6_F1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -10,7 +10,7 @@
|
||||
#ttranslate c 0 0 -10
|
||||
#fuse s f1 c
|
||||
|
||||
restore 6_F56.draw s
|
||||
restore [locate_data_file 6_F56.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
nexplode s E
|
||||
mkevol result s
|
||||
|
@ -11,7 +11,7 @@
|
||||
#explode p F
|
||||
#glue s p b p_2 b_2
|
||||
|
||||
restore 6_G1234.draw s
|
||||
restore [locate_data_file 6_G1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -11,7 +11,7 @@
|
||||
#explode p F
|
||||
#glue s p b p_2 b_2
|
||||
|
||||
restore 6_G1234.draw s
|
||||
restore [locate_data_file 6_G1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -17,7 +17,7 @@ puts "TODO OCC22817 All:Faulty shapes in variables faulty_1 to faulty_2"
|
||||
#explode r F
|
||||
#glue s c r c_3 s_6
|
||||
|
||||
restore 6_G56.draw s
|
||||
restore [locate_data_file 6_G56.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
fsameparameter s
|
||||
explode s E
|
||||
|
@ -7,7 +7,7 @@
|
||||
#pipe s1 w p
|
||||
#fuse s s1 b
|
||||
|
||||
restore 6_H1234.draw s
|
||||
restore [locate_data_file 6_H1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -7,7 +7,7 @@
|
||||
#pipe s1 w p
|
||||
#fuse s s1 b
|
||||
|
||||
restore 6_H1234.draw s
|
||||
restore [locate_data_file 6_H1234.draw] s
|
||||
explode s E
|
||||
mkevol result s
|
||||
updatevol s_3 0 2*SCALE2 1 5*SCALE2 2 2*SCALE2
|
||||
|
@ -12,7 +12,7 @@
|
||||
#fuse s f1 c
|
||||
#donly s
|
||||
|
||||
restore 6_H56.draw s
|
||||
restore [locate_data_file 6_H56.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -4,7 +4,7 @@
|
||||
#ttranslate s2 0 7 7
|
||||
#fuse s s1 s2
|
||||
|
||||
restore 6_I1234.draw s
|
||||
restore [locate_data_file 6_I1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -4,7 +4,7 @@
|
||||
#ttranslate s2 0 7 7
|
||||
#fuse s s1 s2
|
||||
|
||||
restore 6_I1234.draw s
|
||||
restore [locate_data_file 6_I1234.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -6,7 +6,7 @@
|
||||
#pcylinder s4 3 20
|
||||
#fuse s s4 s3
|
||||
|
||||
restore 6_I56.draw s
|
||||
restore [locate_data_file 6_I56.draw] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
## ====================================
|
||||
puts "TODO OCC22817 All:TEST INCOMPLETE"
|
||||
|
||||
restore indus05-A1.rle s
|
||||
restore [locate_data_file indus05-A1.rle] s
|
||||
explode s e
|
||||
blend result s 2 s_4 s_5 s_15 s_16
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from original bug PRO4495
|
||||
## ====================================
|
||||
|
||||
restore indus05.rle s
|
||||
restore [locate_data_file indus05.rle] s
|
||||
tscale s 0 0 0 1000
|
||||
explode s e
|
||||
blend result s 2 s_26
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from original bug PRO4497
|
||||
## ====================================
|
||||
|
||||
restore indus09.rle s
|
||||
restore [locate_data_file indus09.rle] s
|
||||
tscale s 0 0 0 1000
|
||||
explode s e
|
||||
blend result s 5 s_8
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from original bug PRO4497
|
||||
## ====================================
|
||||
|
||||
restore indus09.rle s
|
||||
restore [locate_data_file indus09.rle] s
|
||||
tscale s 0 0 0 1000
|
||||
explode s e
|
||||
blend result s 5 s_12
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from original bug PRO4536
|
||||
## ====================================
|
||||
|
||||
restore blend04.rle s
|
||||
restore [locate_data_file blend04.rle] s
|
||||
tscale s 0 0 0 1000
|
||||
explode s e
|
||||
blend result s 5 s_3
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from original bug PRO4536
|
||||
## ====================================
|
||||
|
||||
restore blend04.rle s
|
||||
restore [locate_data_file blend04.rle] s
|
||||
tscale s 0 0 0 1000
|
||||
explode s e
|
||||
blend result s 5 s_6
|
||||
|
@ -5,7 +5,7 @@
|
||||
## ====================================
|
||||
puts "TODO OCC22817 All:TEST INCOMPLETE"
|
||||
|
||||
restore blend06.rle s
|
||||
restore [locate_data_file blend06.rle] s
|
||||
tscale s 0 0 0 1000
|
||||
explode s e
|
||||
blend myResult s 6 s_5
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro9169:
|
||||
## ====================================
|
||||
|
||||
restore pro9169.rle s
|
||||
restore [locate_data_file pro9169.rle] s
|
||||
explode s e
|
||||
blend result s 1 s_27
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro9169:
|
||||
## ====================================
|
||||
|
||||
restore pro9169.rle s
|
||||
restore [locate_data_file pro9169.rle] s
|
||||
explode s e
|
||||
blend result s 10.0 s_22
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro5203
|
||||
## ====================================
|
||||
|
||||
restore pro5203.rle a
|
||||
restore [locate_data_file pro5203.rle] a
|
||||
explode a e
|
||||
blend result a 0.001 a_32 0.001 a_190.001 a_31
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
## ====================================
|
||||
puts "TODO OCC22817 All:TEST INCOMPLETE"
|
||||
|
||||
restore pro10320.rle a
|
||||
restore [locate_data_file pro10320.rle] a
|
||||
explode a e
|
||||
blend result a 15 a_15
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from PRO11555
|
||||
## ====================================
|
||||
|
||||
restore pro11555.rle a
|
||||
restore [locate_data_file pro11555.rle] a
|
||||
explode a e
|
||||
blend result a 2 a_1 2 a_2
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro11907
|
||||
## ====================================
|
||||
|
||||
restore pro11907.rle a
|
||||
restore [locate_data_file pro11907.rle] a
|
||||
nexplode a e
|
||||
blend result a 4 a_10
|
||||
explode result Sh
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro12881
|
||||
## ====================================
|
||||
|
||||
restore pro12881.rle a
|
||||
restore [locate_data_file pro12881.rle] a
|
||||
explode a e
|
||||
blend result a 5 a_89
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
## ====================================
|
||||
puts "TODO OCC22817 All:TEST INCOMPLETE"
|
||||
|
||||
restore pro12894.rle a
|
||||
restore [locate_data_file pro12894.rle] a
|
||||
explode a e
|
||||
blend result a 7 a_18 7 a_1 7 a_66
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro12920.rle
|
||||
## ====================================
|
||||
|
||||
restore pro12894.rle a
|
||||
restore [locate_data_file pro12894.rle] a
|
||||
explode a e
|
||||
blend result a 5 a_89
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from cts19997
|
||||
## ====================================
|
||||
|
||||
restore cts19997.rle a
|
||||
restore [locate_data_file cts19997.rle] a
|
||||
nexplode a e
|
||||
blend result a 2 a_1
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from cts19335
|
||||
## ====================================
|
||||
|
||||
restore cts19335.rle a
|
||||
restore [locate_data_file cts19335.rle] a
|
||||
nexplode a e
|
||||
blend result a 2 a_20
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from cts40124
|
||||
## ====================================
|
||||
|
||||
restore cts40124.rle a
|
||||
restore [locate_data_file cts40124.rle] a
|
||||
nexplode a e
|
||||
blend result a 0.01 a_16 0.02 a_9 0.03 a_14 0.01 a_15 0.02 a_22 0.03 a_17
|
||||
explode result sh
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro5477
|
||||
## ====================================
|
||||
|
||||
restore pro5477.rle a
|
||||
restore [locate_data_file pro5477.rle] a
|
||||
tscale a 0 0 0 1000
|
||||
nexplode a e
|
||||
blend result a 10 a_13
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro5545
|
||||
## ====================================
|
||||
|
||||
restore pro5545.rle a
|
||||
restore [locate_data_file pro5545.rle] a
|
||||
encoderegularity a 1
|
||||
tscale a 0 0 0 1000
|
||||
nexplode a e
|
||||
|
@ -4,9 +4,9 @@
|
||||
## Comment : from pro6309
|
||||
## ====================================
|
||||
|
||||
restore pro6309a.rle a
|
||||
restore [locate_data_file pro6309a.rle] a
|
||||
tscale a 0 0 0 1000
|
||||
restore pro6309b.rle b
|
||||
restore [locate_data_file pro6309b.rle] b
|
||||
tscale b 0 0 0 1000
|
||||
#restore pro6309c.rle c
|
||||
#restore pro6309d.rle d
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro6944
|
||||
## ====================================
|
||||
|
||||
restore pro6944.rle a
|
||||
restore [locate_data_file pro6944.rle] a
|
||||
tscale a 0 0 0 1000
|
||||
nexplode a e
|
||||
blend result a 12 a_16 12 a_15 12 a_17
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro9067
|
||||
## ====================================
|
||||
|
||||
restore pro9067.rle a
|
||||
restore [locate_data_file pro9067.rle] a
|
||||
nexplode a e
|
||||
blend result a 2 a_60
|
||||
nexplode result e
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro9523
|
||||
## ====================================
|
||||
|
||||
restore pro9523.rle a
|
||||
restore [locate_data_file pro9523.rle] a
|
||||
nexplode a e
|
||||
blend result a 2.5 a_4
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from ?
|
||||
## ====================================
|
||||
|
||||
restore cfi900H2.rle a
|
||||
restore [locate_data_file cfi900H2.rle] a
|
||||
nexplode a e
|
||||
blend result a 1 a_66
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro12832
|
||||
## ====================================
|
||||
|
||||
restore pro12832.rle a
|
||||
restore [locate_data_file pro12832.rle] a
|
||||
explode a e
|
||||
blend result a 3 a_28
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro10391
|
||||
## ====================================
|
||||
|
||||
restore pro10391.rle a
|
||||
restore [locate_data_file pro10391.rle] a
|
||||
explode a e
|
||||
erase a
|
||||
blend result a 10 a_3 5 a_4 10 a_2 5 a_13 5 a_11 10 a_14 5 a_15 10 a_12 5 a_6 5 a_9
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from fra60610
|
||||
## ====================================
|
||||
|
||||
restore fra60610.rle a
|
||||
restore [locate_data_file fra60610.rle] a
|
||||
nexplode a e
|
||||
blend result a 2 a_69
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from
|
||||
## ====================================
|
||||
|
||||
restore cfi900H7.rle a
|
||||
restore [locate_data_file cfi900H7.rle] a
|
||||
nexplode a e
|
||||
blend result a 5 a_5 5 a_13 5 a_28
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from ger60206
|
||||
## ====================================
|
||||
|
||||
restore ger60206.rle a
|
||||
restore [locate_data_file ger60206.rle] a
|
||||
explode a e
|
||||
mkevol result a
|
||||
updatevol a_21 0 0.5 1 1
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro10321
|
||||
## ====================================
|
||||
|
||||
restore pro10321.rle a
|
||||
restore [locate_data_file pro10321.rle] a
|
||||
explode a e
|
||||
blend result a 59 a_13
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from ID150018
|
||||
## ====================================
|
||||
|
||||
restore id150018.rle a
|
||||
restore [locate_data_file id150018.rle] a
|
||||
nexplode a e
|
||||
blend result a 30 a_20
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from jap50078
|
||||
## ====================================
|
||||
|
||||
restore jap50078.rle a
|
||||
restore [locate_data_file jap50078.rle] a
|
||||
nexplode a e
|
||||
blend result a 13 a_12 13 a_17 13 a_41 13 a_42
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro8783
|
||||
## ====================================
|
||||
|
||||
restore pro8783.rle a
|
||||
restore [locate_data_file pro8783.rle] a
|
||||
explode a e
|
||||
mkevol result a
|
||||
updatevol a_4 0 15 0.5 9 1 5
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro8792
|
||||
## ====================================
|
||||
|
||||
restore pro8792.rle a
|
||||
restore [locate_data_file pro8792.rle] a
|
||||
explode a e
|
||||
mkevol result a
|
||||
updatevol a_20 0 15 0.5 20 1 5
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro10356
|
||||
## ====================================
|
||||
|
||||
restore pro10356.rle a
|
||||
restore [locate_data_file pro10356.rle] a
|
||||
explode a e
|
||||
blend result a 19 a_17 14 a_20 14 a_23 14 a_1 16 a_2 34 a_5 7 a_8 19 a_11 19 a_14 7 a_22 7 a_25 7 a_27 7 a_4 7 a_7 7 a_10 7 a_13 7 a_16 7 a_19
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro10631
|
||||
## ====================================
|
||||
|
||||
restore pro10631.rle a
|
||||
restore [locate_data_file pro10631.rle] a
|
||||
explode a e
|
||||
blend result a 5 a_45
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro7788
|
||||
## ====================================
|
||||
|
||||
restore pro7788.rle a
|
||||
restore [locate_data_file pro7788.rle] a
|
||||
explode a e
|
||||
blend result a 20 a_8 20 a_11 20 a_1 20 a_12
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro10522
|
||||
## ====================================
|
||||
|
||||
restore pro10522.rle a
|
||||
restore [locate_data_file pro10522.rle] a
|
||||
explode a e
|
||||
blend result a 2 a_82
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro11850
|
||||
## ====================================
|
||||
|
||||
restore pro11850.rle a
|
||||
restore [locate_data_file pro11850.rle] a
|
||||
explode a e
|
||||
blend result a 3 a_22
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro12404
|
||||
## ====================================
|
||||
|
||||
restore pro12404.rle a
|
||||
restore [locate_data_file pro12404.rle] a
|
||||
explode a e
|
||||
blend result a 10 a_8 10 a_13
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro10117
|
||||
## ====================================
|
||||
|
||||
restore pro10117.rle a
|
||||
restore [locate_data_file pro10117.rle] a
|
||||
explode a e
|
||||
blend result a 2 a_128 1 a_10
|
||||
|
||||
|
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