14 template <Primitive T>
17 return vec<2, T>(-
static_cast<T
>(x), -
static_cast<T
>(y));
20 template <Primitive T>
21 template <Primitive U>
24 x =
static_cast<T
>(x + value);
25 y =
static_cast<T
>(y + value);
28 template <Primitive T>
29 template <Primitive U>
32 x =
static_cast<T
>(x - value);
33 y =
static_cast<T
>(y - value);
36 template <Primitive T>
37 template <Primitive U>
40 x =
static_cast<T
>(x * value);
41 y =
static_cast<T
>(y * value);
44 template <Primitive T>
45 template <Primitive U>
48 x =
static_cast<T
>(x / value);
49 y =
static_cast<T
>(y / value);
52 template <Primitive T>
53 template <Primitive U>
56 x =
static_cast<T
>(x % value);
57 y =
static_cast<T
>(y % value);
60 template <Primitive T>
64 x =
static_cast<T
>(x + other.x);
65 y =
static_cast<T
>(y + other.y);
68 template <Primitive T>
72 x =
static_cast<T
>(x - other.x);
73 y =
static_cast<T
>(y - other.y);
76 template <Primitive T>
80 x =
static_cast<T
>(x * other.x);
81 y =
static_cast<T
>(y * other.y);
84 template <Primitive T>
88 x =
static_cast<T
>(x / other.x);
89 y =
static_cast<T
>(y / other.y);
92 template <Primitive T>
96 x =
static_cast<T
>(x % other.x);
97 y =
static_cast<T
>(y % other.y);
100 template <Primitive T>
106 template <Primitive T>
Definitions for the rvec<2, T> specialized template representing 2D vectors with reference-like seman...
Internal detail definition of a reference vector with fixed size L and type T
Definition of the mathematical vector with fixed size L and type T