xrt: Add xrt_vec3_f64 struct

This commit is contained in:
Moses Turner 2021-08-13 14:52:48 -05:00 committed by Jakob Bornecrantz
parent 778515739f
commit cda56ddfbd

View file

@ -165,6 +165,18 @@ struct xrt_vec3
float z;
};
/*!
* A 3 element vector with single doubles.
*
* @ingroup xrt_iface math
*/
struct xrt_vec3_f64
{
float x;
float y;
float z;
};
/*!
* All-zero value for @ref xrt_vec3
*