Skip to content

Commit 0afd075

Browse files
committed
thinner helper axis
1 parent 15e956a commit 0afd075

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

QMLFiles/Panel_Rocket_Visualization.qml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ BasePanel {
3434
property real angle_y: sensorData.filteredAngleY
3535
property real angle_z: sensorData.filteredAngleZ
3636
property real length: 200 // shaft length
37-
property real thickness: 0.4 // shaft thickness
37+
property real thickness: 0.15 // shaft thickness
3838

3939
// //FAKE DATA
4040
// Timer {
@@ -119,7 +119,7 @@ BasePanel {
119119
//Helper lines to visualize tilt
120120
Model{
121121
source: "#Cylinder"
122-
scale: Qt.vector3d(0.1, visualization.length, visualization.thickness)
122+
scale: Qt.vector3d(0.03, visualization.length, visualization.thickness)
123123
materials: DefaultMaterial{
124124
diffuseColor: "green"
125125
lighting: PrincipledMaterial.NoLighting
@@ -130,7 +130,7 @@ BasePanel {
130130
Model{
131131
source: "#Cylinder"
132132
eulerRotation: Qt.vector3d(0,0,90)
133-
scale: Qt.vector3d(0.1, visualization.length, visualization.thickness)
133+
scale: Qt.vector3d(0.03, visualization.length, visualization.thickness)
134134
materials: DefaultMaterial{
135135
diffuseColor: "red"
136136
lighting: PrincipledMaterial.NoLighting
@@ -141,7 +141,7 @@ BasePanel {
141141
Model{
142142
source: "#Cylinder"
143143
eulerRotation: Qt.vector3d(90,0,0)
144-
scale: Qt.vector3d(0.1, visualization.length, visualization.thickness)
144+
scale: Qt.vector3d(0.03, visualization.length, visualization.thickness)
145145
materials: DefaultMaterial{
146146
diffuseColor: "blue"
147147
lighting: PrincipledMaterial.NoLighting

0 commit comments

Comments
 (0)