u/hand: Remove unused field

When we need this enum we can add it back in the xrt headers.
This commit is contained in:
Jakob Bornecrantz 2023-03-16 00:52:28 +00:00
parent 531b10fa4c
commit 191ca7dbfd
2 changed files with 0 additions and 31 deletions

View file

@ -19,22 +19,6 @@
extern "C" {
#endif
/*!
* The hand tracking model being used.
*
* XRT_HAND_TRACKING_MODEL_INTRINSIC for devices that measure hand tracking through sensors, ie gloves and knuckles
* XRT_HAND_TRACKING_MODEL_EXTRINSIC for devices that measure hand tracking through external factors like cameras
*
* @ingroup aux_util
*/
// enum u_hand_tracking_model
// {
// XRT_HAND_TRACKING_MODEL_INTRINSIC,
// XRT_HAND_TRACKING_MODEL_EXTRINSIC,
// };
struct u_hand_sim_metacarpal
{
struct xrt_vec2 swing;

View file

@ -18,20 +18,6 @@ extern "C" {
#endif
/*!
* The hand tracking model being used.
*
* XRT_HAND_TRACKING_MODEL_INTRINSIC for devices that measure hand tracking through sensors, ie gloves and knuckles
* XRT_HAND_TRACKING_MODEL_EXTRINSIC for devices that measure hand tracking through external factors like cameras
*
* @ingroup aux_util
*/
enum u_hand_tracking_model
{
XRT_HAND_TRACKING_MODEL_INTRINSIC,
XRT_HAND_TRACKING_MODEL_EXTRINSIC,
};
struct u_hand_tracking_finger_value
{
float splay;
@ -108,7 +94,6 @@ struct u_hand_tracking
// scales dimensions like bone lengths
float scale;
enum u_hand_tracking_model model;
union {
struct u_hand_tracking_values finger_values;
} model_data;