The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

xrt: Add xrt_vec3_f64 struct

authored by

Moses Turner and committed by
Jakob Bornecrantz
cda56ddf 77851573

+12
+12
src/xrt/include/xrt/xrt_defines.h
··· 166 166 }; 167 167 168 168 /*! 169 + * A 3 element vector with single doubles. 170 + * 171 + * @ingroup xrt_iface math 172 + */ 173 + struct xrt_vec3_f64 174 + { 175 + float x; 176 + float y; 177 + float z; 178 + }; 179 + 180 + /*! 169 181 * All-zero value for @ref xrt_vec3 170 182 * 171 183 * @ingroup xrt_iface math