11 template <Primitive T>
16 template <Primitive T>
22 template <Primitive T>
23 template <Primitive U>
26 x =
static_cast<T
>(x + value);
27 y =
static_cast<T
>(y + value);
28 z =
static_cast<T
>(z + value);
29 w =
static_cast<T
>(w + value);
32 template <Primitive T>
33 template <Primitive U>
36 x =
static_cast<T
>(x - value);
37 y =
static_cast<T
>(y - value);
38 z =
static_cast<T
>(z - value);
39 w =
static_cast<T
>(w - value);
42 template <Primitive T>
43 template <Primitive U>
46 x =
static_cast<T
>(x * value);
47 y =
static_cast<T
>(y * value);
48 z =
static_cast<T
>(z * value);
49 w =
static_cast<T
>(w * value);
52 template <Primitive T>
53 template <Primitive U>
56 x =
static_cast<T
>(x / value);
57 y =
static_cast<T
>(y / value);
58 z =
static_cast<T
>(z / value);
59 w =
static_cast<T
>(w / value);
62 template <Primitive T>
63 template <Primitive U>
66 x =
static_cast<T
>(x % value);
67 y =
static_cast<T
>(y % value);
68 z =
static_cast<T
>(z % value);
69 w =
static_cast<T
>(w % value);
72 template <Primitive T>
76 x =
static_cast<T
>(x + other.x);
77 y =
static_cast<T
>(y + other.y);
78 z =
static_cast<T
>(z + other.z);
79 w =
static_cast<T
>(w + other.w);
82 template <Primitive T>
86 x =
static_cast<T
>(x - other.x);
87 y =
static_cast<T
>(y - other.y);
88 z =
static_cast<T
>(z - other.z);
89 w =
static_cast<T
>(w - other.w);
92 template <Primitive T>
96 x =
static_cast<T
>(x * other.x);
97 y =
static_cast<T
>(y * other.y);
98 z =
static_cast<T
>(z * other.z);
99 w =
static_cast<T
>(w * other.w);
102 template <Primitive T>
106 x =
static_cast<T
>(x / other.x);
107 y =
static_cast<T
>(y / other.y);
108 z =
static_cast<T
>(z / other.z);
109 w =
static_cast<T
>(w / other.w);
112 template <Primitive T>
116 x =
static_cast<T
>(x % other.x);
117 y =
static_cast<T
>(y % other.y);
118 z =
static_cast<T
>(z % other.z);
119 w =
static_cast<T
>(w % other.w);
122 template <Primitive T>
128 template <Primitive T>
135 template <Primitive T>
142 template <Primitive T>
143 template <
size_t n, Primitive U>
147 for (
size_t i = 0; i < n; i++)
149 rv.
data[i] =
static_cast<U
>(data[i]);
154 template <Primitive T>
Defines a 4-dimensional reference vector struct.
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
std::array< T, size > data
The underlying data of the vector.