1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
puts "========"
puts "0031190: Modeling Algorithms - progress indication in GeomPlate is inconsistent"
puts "========"
beziercurve c1 3 0 0 0 1 0 1 2 0 0
mkedge e1 c1
tcopy e1 e2
ttranslate e2 0 2 0
beziercurve c2 3 0 0 0 0 1 2 0 2 0
mkedge e3 c2
tcopy e3 e4
ttranslate e4 2 0 0
# Configure XProgress
XProgress +t
# create the surface
set output [gplate r1 4 0 e1 0 e2 0 e3 0 e4 0]
# Test data
set ctr {"0%" "Calculating the surface filled" "ComputeSurfInit"
"Plate_Plate::SolveTI1()" "math_Gauss LU_Decompose" "100%" }
foreach data ${ctr} {
if ![regexp $data $output] {
puts "Error: gplate command: Mismatch data on '$data'"
break
}
}
|