-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLeapPing.qml
312 lines (307 loc) · 10.4 KB
/
LeapPing.qml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
import QtQuick 1.1
Rectangle {
width: 600
height: 300
color: "white"
//properties to be overridden
property string handCount: "0"
property string handIds: ""
property string handVector: ""
property string handPosition: ""
property string handVelocity: ""
property string handSphereRadius: ""
property string handSphereCenter: ""
property string handPalmNormal: ""
property string handFingers: ""
property string handTools: ""
property string handIsValid: ""
// property string fingerCount: "0";
// property string fingerIds: ""
// property string fingerlength: ""
// property string fingerWidth: ""
// property string fingerVector: ""
// property string fingerTipPosition: ""
// property string fingerVelocity: ""
// property string fingerHandIds: ""
// property string fingerIsValid: ""
//Grid for displaying Hands, Fingers and Tools Information
Grid {
width: parent.width
height: parent.height
Column {
id: handsInfo
width: parent.width/3.33
height: parent.height
Row {
height: item.height+value.height
Text {
id: item
text: "No. Of Hands"
}
Text {
id: value
text: handCount
anchors.top: item.bottom
anchors.left: item.bottom
font.bold: true
color: "blue"
}
}
Row {
height: item.height+value.height
Text {
id: item1
text: "Hand Ids"
}
Text {
text: handIds
anchors.top: item1.bottom
font.bold: true
color: "blue"
}
}
Row {
height: item.height+value.height
Text {
id: item2
text: "Vector"
}
Text {
text: handVector
anchors.top: item2.bottom
font.bold: true
color: "blue"
}
}
Row {
height: item.height+value.height
Text {
id: item3
text: "Position"
}
Text {
text: handPosition
anchors.top: item3.bottom
font.bold: true
color: "blue"
}
}
Row {
height: item.height+value.height
Text {
id: item4
text: "Velocity"
}
Text {
text: handVelocity
anchors.top: item4.bottom
font.bold: true
color: "blue"
}
}
Row {
height: item.height+value.height
Text {
id: item5
text: "Sphere Radius"
}
Text {
text: handSphereRadius
anchors.top: item5.bottom
font.bold: true
color: "blue"
}
}
Row {
height: item.height+value.height
Text {
id: item6
text: "Sphere Center"
}
Text {
text: handSphereCenter
anchors.top: item6.bottom
font.bold: true
color: "blue"
}
}
Row {
height: item.height+value.height
Text {
id: item7
text: "Palm Normal"
}
Text {
text: handPalmNormal
anchors.top: item7.bottom
font.bold: true
color: "blue"
}
}
Row {
height: item.height+value.height
Text {
id: item8
text: "Fingers"
}
Text {
text: handFingers
anchors.top: item8.bottom
font.bold: true
color: "blue"
}
}
Row {
height: item.height+value.height
Text {
id: item9
text: "Tools"
}
Text {
text: handTools
anchors.top: item9.bottom
font.bold: true
color: "blue"
}
}
Row {
height: item.height+value.height
Text {
id: item10
text: "Is Valid"
}
Text {
text: handIsValid
anchors.top: item10.bottom
font.bold: true
color: "blue"
}
}
}
// Column {
// id: fingersInfo
// width: parent.width/3.33
// height: parent.height
// Grid {
// Row {
// Text {
// id: item11
// text: "No. Of Fingers"
// }
// Text {
// text: fingerCount
// anchors.top: item11.bottom
// font.bold: true
// color: "blue"
// }
// }
// Row {
// Text {
// id: item11
// text: "Ids"
// }
// Text {
// text: fingerIds
// anchors.top: item11.bottom
// font.bold: true
// color: "blue"
// }
// }
// Row {
// Text {
// id: item11
// text: "Lengths"
// }
// Text {
// text: fingerCount
// anchors.top: item11.bottom
// font.bold: true
// color: "blue"
// }
// }
// Row {
// Text {
// id: item11
// text: "Widths"
// }
// Text {
// text: fingerCount
// anchors.top: item11.bottom
// font.bold: true
// color: "blue"
// }
// }
// Row {
// Text {
// id: item11
// text: "Vectors"
// }
// Text {
// text: fingerCount
// anchors.top: item11.bottom
// font.bold: true
// color: "blue"
// }
// }
// Row {
// Text {
// id: item11
// text: "No. Of Fingers"
// }
// Text {
// text: fingerCount
// anchors.top: item11.bottom
// font.bold: true
// color: "blue"
// }
// }
// Row {
// Text {
// id: item11
// text: "No. Of Fingers"
// }
// Text {
// text: fingerCount
// anchors.top: item11.bottom
// font.bold: true
// color: "blue"
// }
// }
// Row {
// Text {
// id: item11
// text: "No. Of Fingers"
// }
// Text {
// text: fingerCount
// anchors.top: item11.bottom
// font.bold: true
// color: "blue"
// }
// }
// Row {
// Text {
// id: item11
// text: "No. Of Fingers"
// }
// Text {
// text: fingerCount
// anchors.top: item11.bottom
// font.bold: true
// color: "blue"
// }
// }
// }
// }
// Column {
// id: toolsInfo
// width: parent.width/3.33
// height: parent.height
// ListView {
// id: toolsInfoListView
// model: ToolsListModel
// delegate: listItemDelegate
// }
// }
}
}