mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-02-03 12:28:07 +00:00
xrt: Add xrt_vec3_f64 struct
This commit is contained in:
parent
778515739f
commit
cda56ddfbd
|
@ -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
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue