1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
/// Macro for creating a 2D vector (`Vec2`) using a concise syntax.
///
/// # Syntax
///
/// The `vec2!` macro accepts a comma-separated list of values, representing the elements of
/// a 2D vector. It constructs a `Vec2` instance using the provided values.
///
/// # Examples
///
/// ```
/// # use vmm::*;
/// let vec = vec2![1.0, 2.0];
///
/// assert_eq!(vec.to_arr(), &[1.0, 2.0]);
/// ```
///
/// # Notes
///
/// - The macro internally uses the `from_array` function to create the vector.
/// - Ensure that the provided expressions are suitable for initializing a 2D vector.
/// - The resulting `Vec2` struct will be created using the `from_array` function.
///
/// # See Also
///
/// - [`Vec2`](super::vectors::Vec2): The 2D vector type used by this macro.
/// - [`from_array`](super::vectors::VecN::from_array): Function to construct a vector from an array.
/// Macro for creating a 3D vector (`Vec3`) using a concise syntax.
///
/// # Syntax
///
/// The `vec3!` macro accepts a comma-separated list of values, representing the elements of
/// a 3D vector. It constructs a `Vec3` instance using the provided values.
///
/// # Examples
///
/// ```
/// # use vmm::*;
/// let vec = vec3![1.0, 2.0, 3.0];
///
/// assert_eq!(vec.to_arr(), &[1.0, 2.0, 3.0]);
/// ```
///
/// # Notes
///
/// - The macro internally uses the `from_array` function to create the vector.
/// - Ensure that the provided expressions are suitable for initializing a 3D vector.
/// - The resulting `Vec3` struct will be created using the `from_array` function.
///
/// # See Also
///
/// - [`Vec3`](super::vectors::Vec3): The 3D vector type used by this macro.
/// - [`from_array`](super::vectors::VecN::from_array): Function to construct a vector from an array.
/// Macro for creating a 4D vector (`Vec4`) using a concise syntax.
///
/// # Syntax
///
/// The `vec4!` macro accepts a comma-separated list of values, representing the elements of
/// a 4D vector. It constructs a `Vec4` instance using the provided values.
///
/// # Examples
///
/// ```
/// # use vmm::*;
/// let vec = vec4![1.0, 2.0, 3.0, 4.0];
///
/// assert_eq!(vec.to_arr(), &[1.0, 2.0, 3.0, 4.0]);
/// ```
///
/// # Notes
///
/// - The macro internally uses the `from_array` function to create the vector.
/// - Ensure that the provided expressions are suitable for initializing a 4D vector.
/// - The resulting `Vec4` struct will be created using the `from_array` function.
///
/// # See Also
///
/// - [`Vec4`](super::vectors::Vec4): The 4D vector type used by this macro.
/// - [`from_array`](super::vectors::VecN::from_array): Function to construct a vector from an array.
/// Macro for creating a 2x2 matrix (`Mat2`) using a concise syntax.
///
/// # Syntax
///
/// The `mat2!` macro creates a Mat2 from an array of Vec2.
///
/// # Notes
///
/// - The macro internally uses the `from_mat_vec` function to create the matrix.
/// - Ensure that the provided expressions are suitable for initializing a 2x2 matrix.
///
/// # Example
///
/// ```
/// # use vmm::*;
/// let mat = mat2![vec2![1, 2], vec2![4, 3]];
///
/// assert_eq!(mat, Mat2::from_mat_vec(&[vec2![1, 2], vec2![4, 3]]));
/// ```
///
/// # See Also
///
/// - [`Mat2`](super::matrices::Mat2): The 2x2 matrix type used by this macro.
/// - [`from_mat_vec`](super::matrices::MatN::from_mat_vec): Function to construct a matrix from an array of Vec2.
/// Macro for creating a 2x2 matrix (`Mat2`) using a concise syntax.
///
/// # Syntax
///
/// The `mat2_raw!` macro creates a Mat2 from a 2D array.
///
/// # Notes
///
/// - The macro internally uses the `from_mat` function to create the matrix.
/// - Ensure that the provided expressions are suitable for initializing a 2x2 matrix.
///
/// # Example
///
/// ```
/// # use vmm::*;
/// let mat = mat2_raw![[1, 2], [4, 3]];
///
/// assert_eq!(mat, Mat2::from_mat(&[[1, 2], [4, 3]]));
/// ```
///
/// # See Also
///
/// - [`Mat2`](super::matrices::Mat2): The 2x2 matrix type used by this macro.
/// - [`from_mat`](super::matrices::MatN::from_mat): Function to construct a matrix from a 2D array of elements.
/// Macro for creating a 3x3 matrix (`Mat3`) using a concise syntax.
///
/// # Syntax
///
/// The `mat3!` macro creates a Mat3 from an array of Vec3.
///
/// # Notes
///
/// - The macro internally uses the `from_mat_vec` function to create the matrix.
/// - Ensure that the provided expressions are suitable for initializing a 3x3 matrix.
///
/// # Example
///
/// ```
/// # use vmm::*;
/// let mat = mat3![vec3![1, 2, 3], vec3![6, 5, 4], vec3![7, 8, 9]];
///
/// assert_eq!(mat, Mat3::from_mat_vec(&[vec3![1, 2, 3], vec3![6, 5, 4], vec3![7, 8, 9]]));
/// ```
///
/// # See Also
///
/// - [`Mat3`](super::matrices::Mat3): The 3x3 matrix type used by this macro.
/// - [`from_mat_vec`](super::matrices::MatN::from_mat_vec): Function to construct a matrix from an array of Vec3.
/// Macro for creating a 3x3 matrix (`Mat3`) using a concise syntax.
///
/// # Syntax
///
/// The `mat3_raw!` macro creates a Mat3 from a 2D array.
///
/// # Notes
///
/// - The macro internally uses the `from_mat` function to create the matrix.
/// - Ensure that the provided expressions are suitable for initializing a 3x3 matrix.
///
/// # Example
///
/// ```
/// # use vmm::*;
/// let mat = mat3_raw![[1, 2, 3], [6, 5, 4], [7, 8, 9]];
///
/// assert_eq!(mat, Mat3::from_mat(&[[1, 2, 3], [6, 5, 4], [7, 8, 9]]));
/// ```
///
/// # See Also
///
/// - [`Mat3`](super::matrices::Mat3): The 3x3 matrix type used by this macro.
/// - [`from_mat`](super::matrices::MatN::from_mat): Function to construct a matrix from a 2D array of elements.
/// Macro for creating a 4x4 matrix (`Mat4`) using a concise syntax.
///
/// # Syntax
///
/// The `mat4!` macro creates a Mat4 from an array of Vec4.
///
/// # Notes
///
/// - The macro internally uses the `from_mat_vec` function to create the matrix.
/// - Ensure that the provided expressions are suitable for initializing a 4x4 matrix.
///
/// # Example
///
/// ```
/// # use vmm::*;
/// let mat = mat4![vec4![1, 2, 3, 4], vec4![8, 7, 6, 5], vec4![9, 10, 11, 12], vec4![16, 15, 14, 13]];
///
/// assert_eq!(mat, Mat4::from_mat_vec(&[vec4![1, 2, 3, 4], vec4![8, 7, 6, 5], vec4![9, 10, 11, 12], vec4![16, 15, 14, 13]]));
/// ```
///
/// # See Also
///
/// - [`Mat4`](super::matrices::Mat4): The 4x4 matrix type used by this macro.
/// - [`from_mat_vec`](super::matrices::MatN::from_mat_vec): Function to construct a matrix from an array of Vec4.
/// Macro for creating a 4x4 matrix (`Mat4`) using a concise syntax.
///
/// # Syntax
///
/// The `mat4_raw!` macro creates a Mat4 from a 2D array.
///
/// # Notes
///
/// - The macro internally uses the `from_mat` function to create the matrix.
/// - Ensure that the provided expressions are suitable for initializing a 4x4 matrix.
///
/// # Example
///
/// ```
/// # use vmm::*;
/// let mat = mat4_raw![[1, 2, 3, 4], [8, 7, 6, 5], [9, 10, 11, 12], [16, 15, 14, 13]];
///
/// assert_eq!(mat, Mat4::from_mat(&[[1, 2, 3, 4], [8, 7, 6, 5], [9, 10, 11, 12], [16, 15, 14, 13]]));
/// ```
/// # See Also
///
/// - [`Mat4`](super::matrices::Mat4): The 4x4 matrix type used by this macro.
/// - [`from_mat`](super::matrices::MatN::from_mat): Function to construct a matrix from a 2D array of elements.