encore une étape pleine de bugs ?

This commit is contained in:
tth
2022-03-25 22:42:15 +01:00
parent 8ed64ac8ff
commit 3621217402
8 changed files with 160 additions and 83 deletions

View File

@@ -1,4 +1,6 @@
#
# Input for this script is generated by 'exportbloubs.f90'
#
# this code is (C) 2022 tTh
#
@@ -13,9 +15,19 @@ BEGIN {
{
age = $5
if (age < 2) color = "Orange"
else if (age > 8) color = "Gray70"
else color = "Sienna"
merged = $6
color = "Cyan"
if (age < 2) color = "Yellow"
if (merged) {
if (age > 12) color = "Orange"
else color = "Red"
}
else {
if (age > 12) color = "CadetBlue"
else color = "Aquamarine"
}
bx += $1
by += $2
bz += $3