mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0023438: Update test cases for new organization of data files
Modifications: 1.Test cases 2. locate_data_file from DrawResources/TestCommands.tcl Fix for mesh end Adjusting testing cases for current state of master using new organization of data files
This commit is contained in:
parent
22cc9fe996
commit
34dd4990ed
@ -1242,10 +1242,7 @@ proc _path_separator {} {
|
||||
# Procedure to locate data file for test given its name.
|
||||
# The search is performed assuming that the function is called
|
||||
# from the test case script; the search order is:
|
||||
# - directory where test script is located
|
||||
# - directories ../data and ../../data from the script dir
|
||||
# - subdirectories <group>/<grid> and <group> of directories listed in
|
||||
# environment variable CSF_TestDataPath
|
||||
# - subdirectories in environment variable CSF_TestDataPath
|
||||
# If file is not found, raises Tcl error.
|
||||
proc locate_data_file {filename} {
|
||||
global env groupname gridname casename
|
||||
@ -1255,33 +1252,19 @@ proc locate_data_file {filename} {
|
||||
error "Error: This procedure (locate_data_file) is for use only in test scripts!"
|
||||
}
|
||||
|
||||
# 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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# check sub-directories corresponding to group and grid of
|
||||
# the current test case in paths indicated by CSF_TestDataPath
|
||||
if { [info exists groupname] && [info exists env(CSF_TestDataPath)] } {
|
||||
# check sub-directories in paths indicated by CSF_TestDataPath
|
||||
if { [info exists env(CSF_TestDataPath)] } {
|
||||
foreach dir [_split_path $env(CSF_TestDataPath)] {
|
||||
if { [info exists gridname] && [file exists $dir/$groupname/$gridname/$filename] } {
|
||||
return [file normalize $dir/$groupname/$gridname/$filename]
|
||||
}
|
||||
if { [file exists $dir/$groupname/$filename] } {
|
||||
return [file normalize $dir/$groupname/$filename]
|
||||
}
|
||||
while {[llength $dir] != 0} {
|
||||
set dir [lassign $dir name]
|
||||
lappend dir {*}[glob -nocomplain -directory $name -type d *]
|
||||
if { [file exists $name/$filename] } {
|
||||
return [file normalize $name/$filename]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
# check datadir
|
||||
if { [file exists [uplevel datadir]/$filename] } {
|
||||
return [uplevel datadir]/$filename
|
||||
|
@ -6,7 +6,7 @@
|
||||
#cut s s1 s2
|
||||
#save s L12.draw
|
||||
|
||||
restore [locate_data_file L12.draw] s
|
||||
restore [locate_data_file CFI_l12__fiu.rle] s
|
||||
tscale s 0 0 0 SCALE1
|
||||
explode s e
|
||||
mkevol result s
|
||||
|
@ -1,4 +1,4 @@
|
||||
restore [locate_data_file 2_O12.draw] s
|
||||
restore [locate_data_file CFI_2_o12ffq.rle] s
|
||||
explode s e
|
||||
|
||||
mkevol result s
|
||||
|
@ -4,7 +4,7 @@
|
||||
#cut s s1 s2
|
||||
#save s A1234.draw
|
||||
|
||||
restore [locate_data_file A1234.draw] s
|
||||
restore [locate_data_file CFI_a1234fic.rle] 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 [locate_data_file B1234.draw] s
|
||||
restore [locate_data_file CFI_b1234fie.rle] 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 [locate_data_file B5678.draw] s
|
||||
restore [locate_data_file CFI_b5678fif.rle] 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 [locate_data_file C5678.draw] s
|
||||
restore [locate_data_file CFI_c5678fih.rle] 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 [locate_data_file D1234.draw] s
|
||||
restore [locate_data_file CFI_d1234fii.rle] 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 [locate_data_file D5678.draw] s
|
||||
restore [locate_data_file CFI_d5678fij.rle] 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 [locate_data_file E5678.draw] s
|
||||
restore [locate_data_file CFI_e5678fil.rle] 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 [locate_data_file F1234.draw] s
|
||||
restore [locate_data_file CFI_f1234fim.rle] 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 [locate_data_file F5678.draw] s
|
||||
restore [locate_data_file CFI_f5678fin.rle] 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 [locate_data_file H5678.draw] s
|
||||
restore [locate_data_file CFI_h5678fir.rle] 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 [locate_data_file 6_A1234.draw] s
|
||||
restore [locate_data_file CFI_6_a12fgr.rle] 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 [locate_data_file 6_A1234.draw] s
|
||||
restore [locate_data_file CFI_6_a12fgr.rle] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -8,7 +8,7 @@
|
||||
#fuse s f1 c
|
||||
#donly s
|
||||
|
||||
restore [locate_data_file 6_A56.draw] s
|
||||
restore [locate_data_file CFI_6_a56fgs.rle] 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 [locate_data_file 6_B1234.draw] s
|
||||
restore [locate_data_file CFI_6_b12fgt.rle] 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 [locate_data_file 6_B1234.draw] s
|
||||
restore [locate_data_file CFI_6_b12fgt.rle] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -7,7 +7,7 @@
|
||||
#fuse s f1 c
|
||||
#donly s
|
||||
|
||||
restore [locate_data_file 6_B56.draw] s
|
||||
restore [locate_data_file CFI_6_b56fgu.rle] 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 [locate_data_file 6_C1234.draw] s
|
||||
restore [locate_data_file CFI_6_c12fgv.rle] 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 [locate_data_file 6_C1234.draw] s
|
||||
restore [locate_data_file CFI_6_c12fgv.rle] 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 [locate_data_file 6_C56.draw] s
|
||||
restore [locate_data_file CFI_6_c56fgw.rle] 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 [locate_data_file 6_D1234.draw] s
|
||||
restore [locate_data_file CFI_6_d12fgx.rle] 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 [locate_data_file 6_D1234.draw] s
|
||||
restore [locate_data_file CFI_6_d12fgx.rle] 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 [locate_data_file 6_D56.draw] s
|
||||
restore [locate_data_file CFI_6_d56fgy.rle] 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 [locate_data_file 6_E1234.draw] s
|
||||
restore [locate_data_file CFI_6_e12fgz.rle] 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 [locate_data_file 6_E1234.draw] s
|
||||
restore [locate_data_file CFI_6_e12fgz.rle] 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 [locate_data_file 6_E56.draw] s
|
||||
restore [locate_data_file CFI_6_e56fha.rle] 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 [locate_data_file 6_F1234.draw] s
|
||||
restore [locate_data_file CFI_6_f12fhb.rle] 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 [locate_data_file 6_F1234.draw] s
|
||||
restore [locate_data_file CFI_6_f12fhb.rle] 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 [locate_data_file 6_F56.draw] s
|
||||
restore [locate_data_file CFI_6_f56fhc.rle] 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 [locate_data_file 6_G1234.draw] s
|
||||
restore [locate_data_file CFI_6_g12fhd.rle] 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 [locate_data_file 6_G1234.draw] s
|
||||
restore [locate_data_file CFI_6_g12fhd.rle] 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 [locate_data_file 6_H1234.draw] s
|
||||
restore [locate_data_file CFI_6_h12fhf.rle] 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 [locate_data_file 6_H1234.draw] s
|
||||
restore [locate_data_file CFI_6_h12fhf.rle] 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 [locate_data_file 6_H56.draw] s
|
||||
restore [locate_data_file CFI_6_h56fhg.rle] 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 [locate_data_file 6_I1234.draw] s
|
||||
restore [locate_data_file CFI_6_i12fhh.rle] 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 [locate_data_file 6_I1234.draw] s
|
||||
restore [locate_data_file CFI_6_i12fhh.rle] 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 [locate_data_file 6_I56.draw] s
|
||||
restore [locate_data_file CFI_6_i56fhi.rle] s
|
||||
tscale s 0 0 0 SCALE2
|
||||
explode s E
|
||||
mkevol result s
|
||||
|
@ -5,7 +5,7 @@
|
||||
## ====================================
|
||||
puts "TODO OCC22817 All:TEST INCOMPLETE"
|
||||
|
||||
restore [locate_data_file indus05-A1.rle] s
|
||||
restore [locate_data_file CFI_indusfjm.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 [locate_data_file indus05.rle] s
|
||||
restore [locate_data_file CCH_indushem.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 [locate_data_file indus09.rle] s
|
||||
restore [locate_data_file CCH_indushep.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 [locate_data_file indus09.rle] s
|
||||
restore [locate_data_file CCH_indushep.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 [locate_data_file blend04.rle] s
|
||||
restore [locate_data_file CCH_blendhdp.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 [locate_data_file blend04.rle] s
|
||||
restore [locate_data_file CCH_blendhdp.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 [locate_data_file blend06.rle] s
|
||||
restore [locate_data_file CCH_blendhdr.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 [locate_data_file pro9169.rle] s
|
||||
restore [locate_data_file CFI_pro9169.rle] s
|
||||
explode s e
|
||||
blend result s 1 s_27
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro9169:
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro9169.rle] s
|
||||
restore [locate_data_file CFI_pro9169.rle] s
|
||||
explode s e
|
||||
blend result s 10.0 s_22
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro5203
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro5203.rle] a
|
||||
restore [locate_data_file CFI_pro5203.rle] a
|
||||
explode a e
|
||||
blend result a 0.001 a_32 0.001 a_190.001 a_31
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro11907
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro11907.rle] a
|
||||
restore [locate_data_file CFI_pro11907.rle] a
|
||||
nexplode a e
|
||||
blend result a 4 a_10
|
||||
explode result Sh
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro12881
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro12881.rle] a
|
||||
restore [locate_data_file CTO900_pro12880c.rle] a
|
||||
explode a e
|
||||
blend result a 5 a_89
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
## ====================================
|
||||
puts "TODO OCC22817 All:TEST INCOMPLETE"
|
||||
|
||||
restore [locate_data_file pro12894.rle] a
|
||||
restore [locate_data_file CFI_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 [locate_data_file pro12894.rle] a
|
||||
restore [locate_data_file CFI_pro12894.rle] a
|
||||
explode a e
|
||||
blend result a 5 a_89
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from cts19997
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file cts19997.rle] a
|
||||
restore [locate_data_file CFI_cts19997.rle] a
|
||||
nexplode a e
|
||||
blend result a 2 a_1
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from cts19335
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file cts19335.rle] a
|
||||
restore [locate_data_file CFI_cts19335.rle] a
|
||||
nexplode a e
|
||||
blend result a 2 a_20
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from cts40124
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file cts40124.rle] a
|
||||
restore [locate_data_file CFI_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 [locate_data_file pro5477.rle] a
|
||||
restore [locate_data_file CFI_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 [locate_data_file pro5545.rle] a
|
||||
restore [locate_data_file CFI_pro5545.rle] a
|
||||
encoderegularity a 1
|
||||
tscale a 0 0 0 1000
|
||||
nexplode a e
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro6309
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro6309a.rle] a
|
||||
restore [locate_data_file CFI_pro6309a.rle] a
|
||||
tscale a 0 0 0 1000
|
||||
restore [locate_data_file pro6309b.rle] b
|
||||
tscale b 0 0 0 1000
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro6944
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro6944.rle] a
|
||||
restore [locate_data_file CFI_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 [locate_data_file pro9067.rle] a
|
||||
restore [locate_data_file CFI_pro9067.rle] a
|
||||
nexplode a e
|
||||
blend result a 2 a_60
|
||||
nexplode result e
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro9523
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro9523.rle] a
|
||||
restore [locate_data_file CFI_pro9523.rle] a
|
||||
nexplode a e
|
||||
blend result a 2.5 a_4
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro10391
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro10391.rle] a
|
||||
restore [locate_data_file CFI_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 [locate_data_file fra60610.rle] a
|
||||
restore [locate_data_file CFI_fra60610.rle] a
|
||||
nexplode a e
|
||||
blend result a 2 a_69
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file cfi900H7.rle] a
|
||||
restore [locate_data_file CFI_cfi90fjc.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 [locate_data_file ger60206.rle] a
|
||||
restore [locate_data_file CFI_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 [locate_data_file pro10321.rle] a
|
||||
restore [locate_data_file CFI_pro10321.rle] a
|
||||
explode a e
|
||||
blend result a 59 a_13
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from ID150018
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file id150018.rle] a
|
||||
restore [locate_data_file CFI_id150018.rle] a
|
||||
nexplode a e
|
||||
blend result a 30 a_20
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from jap50078
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file jap50078.rle] a
|
||||
restore [locate_data_file CFI_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 [locate_data_file pro8783.rle] a
|
||||
restore [locate_data_file CFI_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 [locate_data_file pro8792.rle] a
|
||||
restore [locate_data_file CFI_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 [locate_data_file pro10356.rle] a
|
||||
restore [locate_data_file CFI_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 [locate_data_file pro10631.rle] a
|
||||
restore [locate_data_file CFI_pro10631.rle] a
|
||||
explode a e
|
||||
blend result a 5 a_45
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro7788
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro7788.rle] a
|
||||
restore [locate_data_file CFI_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 [locate_data_file pro10522.rle] a
|
||||
restore [locate_data_file CFI_pro10522.rle] a
|
||||
explode a e
|
||||
blend result a 2 a_82
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro11850
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro11850.rle] a
|
||||
restore [locate_data_file CFI_pro11850.rle] a
|
||||
explode a e
|
||||
blend result a 3 a_22
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro12404
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro12404.rle] a
|
||||
restore [locate_data_file CFI_pro12404.rle] a
|
||||
explode a e
|
||||
blend result a 10 a_8 10 a_13
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro10117
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro10117.rle] a
|
||||
restore [locate_data_file CFI_pro10117.rle] a
|
||||
explode a e
|
||||
blend result a 2 a_128 1 a_10
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from id150009
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file id150009.rle] a
|
||||
restore [locate_data_file CFI_id150009.rle] a
|
||||
explode a e
|
||||
blend result a 10 a_9
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from id150009
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file id150009.rle] a
|
||||
restore [locate_data_file CFI_id150009.rle] a
|
||||
explode a e
|
||||
blend result a 10 a_17
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro13127
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro13127.rle] a
|
||||
restore [locate_data_file CFI_pro13127.rle] a
|
||||
explode a e
|
||||
blend result a 10 a_28
|
||||
explode result e
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from cts20686
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file cts20686.rle] a
|
||||
restore [locate_data_file CFI_cts20686.rle] a
|
||||
explode a e
|
||||
blend result a 10 a_4 10 a_15 10 a_13 10 a_10 10 a_7
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from cts20970
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file cts20970.rle] a
|
||||
restore [locate_data_file CFI_cts20970.rle] a
|
||||
explode a e
|
||||
blend result a 1 a_108
|
||||
# radius of 0.8 is OK
|
||||
|
@ -5,7 +5,7 @@
|
||||
## ====================================
|
||||
puts "TODO OCC22817 All:Faulty shapes in variables faulty_1 to faulty_14"
|
||||
|
||||
restore [locate_data_file cts21020.rle] a
|
||||
restore [locate_data_file CFI_cts21020.rle] a
|
||||
explode a e
|
||||
blend result a 0.05 a_8 0.05 a_10 0.05 a_9 0.05 a_5 0.05 a_3 0.05 a_1
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro13225
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro13225.rle] a
|
||||
restore [locate_data_file CFI_pro13225.rle] a
|
||||
explode a e
|
||||
blend result a 10 a_3 10 a_8 10 a_7 10 a_6
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
## ====================================
|
||||
puts "TODO OCC22817 All:Faulty shapes in variables faulty_1 to faulty_8"
|
||||
|
||||
restore [locate_data_file pro13892.rle] a
|
||||
restore [locate_data_file CFI_pro13892.rle] a
|
||||
explode a e
|
||||
blend result a 15 a_60
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro14035
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro14035.rle] a
|
||||
restore [locate_data_file CFI_pro14035.rle] a
|
||||
explode a e
|
||||
blend result a 3 a_9 3 a_7 3 a_5 3 a_3 3 a_1 3 a_2 3 a_4 3 a_6 3 a_8
|
||||
# it's a_8 which causes the problem
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro14550
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro14550.rle] a
|
||||
restore [locate_data_file CFI_pro14550.rle] a
|
||||
explode a e
|
||||
blend result a 5 a_1 5 a_3 5 a_4 5 a_2
|
||||
# on its own a_1 is ok
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from pro14551
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file pro14551.rle] a
|
||||
restore [locate_data_file CFI_pro14551.rle] a
|
||||
explode a e
|
||||
mkevol result a
|
||||
updatevol a_7 0 20 1 40
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from cts20006
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file cts20006.rle] a
|
||||
restore [locate_data_file CFI_cts20006.rle] a
|
||||
explode a e
|
||||
blend result a 30 a_18 30 a_20 30 a_24 30 a_16
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from cts21183
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file cts21183.rle] a
|
||||
restore [locate_data_file CFI_cts21183.rle] a
|
||||
explode a e
|
||||
blend result a 10 a_51
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
## ====================================
|
||||
puts "TODO OCC22817 All:TEST INCOMPLETE"
|
||||
|
||||
restore [locate_data_file cts21630.rle] a
|
||||
restore [locate_data_file CFI_cts21630.rle] a
|
||||
explode a e
|
||||
# this may not be all the fillets
|
||||
blend result a 2 s_132 2 s_139 0.5 s_4 0.5 s_144 0.5 s_119 1 s_50
|
||||
|
@ -4,7 +4,7 @@
|
||||
## Comment : from ID260039
|
||||
## ====================================
|
||||
|
||||
restore [locate_data_file id260039.rle] a
|
||||
restore [locate_data_file CFI_id260039.rle] a
|
||||
explode a e
|
||||
blend result a 5 a_16
|
||||
explode result e
|
||||
|
@ -5,7 +5,7 @@
|
||||
## ====================================
|
||||
puts "TODO OCC22817 All:TEST INCOMPLETE"
|
||||
|
||||
restore [locate_data_file buc60330.rle] a
|
||||
restore [locate_data_file CFI_buc60330.rle] a
|
||||
explode a e
|
||||
blend result a 10 a_5 10 a_6
|
||||
## ca marche mais pas ceci
|
||||
|
@ -1,4 +1,4 @@
|
||||
restore [locate_data_file conge001.brep] m
|
||||
restore [locate_data_file CFI901_congefjw.rle] m
|
||||
explode m E
|
||||
# Pas m_34 m_35
|
||||
encoderegularity m 3
|
||||
|
@ -1,4 +1,4 @@
|
||||
restore [locate_data_file conge003.brep] m
|
||||
restore [locate_data_file CFI901_congefjy.rle] m
|
||||
explode m E
|
||||
# Pas Prendre :
|
||||
# m_3 m_4 m_5 m_13 m_14 m_15 m_16 m_17 m_18 m_19
|
||||
|
@ -1,4 +1,4 @@
|
||||
restore [locate_data_file conge006.brep] m
|
||||
restore [locate_data_file CFI901_congefkb.rle] m
|
||||
explode m E
|
||||
encoderegularity m 3
|
||||
blend result m 3 m_1 3 m_2 3 m_3 3 m_4 3 m_5 3 m_6 3 m_7 3 m_8 3 m_9 \
|
||||
|
@ -1,4 +1,4 @@
|
||||
restore [locate_data_file conge007.brep] m
|
||||
restore [locate_data_file CFI901_congefkc.rle] m
|
||||
explode m E
|
||||
# R=15 : m_29 m_31 m_27 m_26
|
||||
encoderegularity m 3
|
||||
|
@ -1,4 +1,4 @@
|
||||
restore [locate_data_file conge008.brep] m
|
||||
restore [locate_data_file CFI901_congefkd.rle] m
|
||||
explode m E
|
||||
encoderegularity m 3
|
||||
blend result m 10 m_1 10 m_2 10 m_3 10 m_4 10 m_5 10 m_6 \
|
||||
|
@ -1,4 +1,4 @@
|
||||
restore [locate_data_file conge009.brep] m
|
||||
restore [locate_data_file CFI901_congefke.rle] m
|
||||
explode m E
|
||||
encoderegularity m 3
|
||||
blend result m 7 m_1 7 m_5 7 m_7 7 m_8 7 m_9 7 m_10 7 m_11 7 m_12 \
|
||||
|
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