Skip to content

Commit df6cbdd

Browse files
committed
tools: monitor: add training table borders
Signed-off-by: Eric Courtois <[email protected]>
1 parent 7efde1a commit df6cbdd

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

cogip/tools/monitor/Scene.qml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -578,6 +578,36 @@ Item {
578578
objectName: "table"
579579
}
580580

581+
Model {
582+
id: trainingLeftBorder
583+
584+
objectName: "TrainingLeftBorder"
585+
position: Qt.vector3d(-500, 22, 35)
586+
scale: Qt.vector3d(10, 0.22, 0.7)
587+
source: "#Cube"
588+
589+
materials: [
590+
DefaultMaterial {
591+
diffuseColor: "#ffeacc61"
592+
}
593+
]
594+
}
595+
596+
Model {
597+
id: trainingTopBorder
598+
599+
objectName: "TrainingTopBorder"
600+
position: Qt.vector3d(22, -750, 35)
601+
scale: Qt.vector3d(0.22, 15, 0.7)
602+
source: "#Cube"
603+
604+
materials: [
605+
DefaultMaterial {
606+
diffuseColor: "#ffeacc61"
607+
}
608+
]
609+
}
610+
581611
Model {
582612
id: granary
583613

0 commit comments

Comments
 (0)