summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_protocol_ft
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-09-18 08:48:08 +0200
committerStanislaw Halik <sthalik@misaki.pl>2014-09-18 08:48:15 +0200
commit20b2685c74ae615420517e93eac0d2c06f6b93cc (patch)
treede33048a83ca06a54e390498f7137431ab7c9639 /ftnoir_protocol_ft
parent06a3eb720894e3ea0df3954c2c4aaa0e4b5ed7ee (diff)
ft: use C-style comments
Diffstat (limited to 'ftnoir_protocol_ft')
-rw-r--r--ftnoir_protocol_ft/fttypes.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ftnoir_protocol_ft/fttypes.h b/ftnoir_protocol_ft/fttypes.h
index cc78a80a..d4cb0c9b 100644
--- a/ftnoir_protocol_ft/fttypes.h
+++ b/ftnoir_protocol_ft/fttypes.h
@@ -24,26 +24,26 @@
#define FT_MM_DATA "FT_SharedMem"
#define FREETRACK_MUTEX "FT_Mutext"
-// only 6 headpose floats and the data id are filled -sh
+/* only 6 headpose floats and the data id are filled -sh */
typedef struct __FTData {
int DataID;
int CamWidth;
int CamHeight;
- // virtual pose
- float Yaw; // positive yaw to the left
- float Pitch; // positive pitch up
- float Roll; // positive roll to the left
+ /* virtual pose */
+ float Yaw; /* positive yaw to the left */
+ float Pitch; /* positive pitch up */
+ float Roll; /* positive roll to the left */
float X;
float Y;
float Z;
- // raw pose with no smoothing, sensitivity, response curve etc.
+ /* raw pose with no smoothing, sensitivity, response curve etc. */
float RawYaw;
float RawPitch;
float RawRoll;
float RawX;
float RawY;
float RawZ;
- // raw points, sorted by Y, origin top left corner
+ /* raw points, sorted by Y, origin top left corner */
float X1;
float Y1;
float X2;