aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2017-03-11 22:45:31 -0500
committercnlohr <lohr85@gmail.com>2017-03-11 22:45:31 -0500
commitdde0e82eb7a5a5500e27071e344e8afe4e336049 (patch)
tree6a8b6d97244d16db9c95231e1fbfa057070b6f31 /include
parenta96dd89c915b5721ed3ce9d41a1d2388651e9ce7 (diff)
downloadlibsurvive-dde0e82eb7a5a5500e27071e344e8afe4e336049.tar.gz
libsurvive-dde0e82eb7a5a5500e27071e344e8afe4e336049.tar.bz2
Update with almost working poser information stuff. This has been long stream to live. Goobye.
Diffstat (limited to 'include')
-rw-r--r--include/libsurvive/survive.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/libsurvive/survive.h b/include/libsurvive/survive.h
index b349ff1..5f2d711 100644
--- a/include/libsurvive/survive.h
+++ b/include/libsurvive/survive.h
@@ -26,8 +26,8 @@ struct SurviveObject
//Pose Information, also "poser" field.
FLT PoseConfidence; //0..1
- SurvivePose OutPose;
- SurvivePose FromLHPose[NUM_LIGHTHOUSES]; //Optionally filled out by poser, contains computed position from each lighthouse.
+ SurvivePose OutPose; //Final pose? (some day, one can dream!)
+ SurvivePose FromLHPose[NUM_LIGHTHOUSES]; //Filled out by poser, contains computed position from each lighthouse.
void * PoserData; //Initialized to zero, configured by poser, can be anything the poser wants.
PoserCB PoserFn;
@@ -92,7 +92,6 @@ struct SurviveContext
//Calibration data:
BaseStationData bsd[NUM_LIGHTHOUSES];
-
SurviveCalData * calptr; //If and only if the calibration subsystem is attached.
SurviveObject ** objs;