Home | History | Annotate | Download | only in sensorservice

Lines Matching refs:vbase

40 class vbase;
134 // "a.xyz + b" is a mixed-operation between a vbase<> and a vec<>, requiring
135 // a conversion of vbase<> to vec<>. The template gunk below avoids this,
258 struct vbase {
263 template<> struct vbase<float, 2> {
272 template<> struct vbase<float, 3> {
277 vbase<float, 2> xy;
278 vbase<float, 2> st;
283 template<> struct vbase<float, 4> {
288 vbase<float, 3> xyz;
289 vbase<float, 3> str;
290 vbase<float, 2> xy;
291 vbase<float, 2> st;
300 class vec : public vbase<TYPE, SIZE>
303 typedef vbase<TYPE, SIZE> base;