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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
use crate::f32::{Angle, Mat2, Mat3, Mat4, Quat, Vec2, Vec3, Vec4};
use approx::{AbsDiffEq, RelativeEq, UlpsEq};

impl AbsDiffEq for Angle {
    type Epsilon = <f32 as AbsDiffEq>::Epsilon;
    fn default_epsilon() -> Self::Epsilon {
        f32::default_epsilon()
    }
    fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool {
        let a1 = self.radians();
        let a2 = other.radians();
        a1.abs_diff_eq(&a2, epsilon)
    }
}

impl RelativeEq for Angle {
    fn default_max_relative() -> Self::Epsilon {
        f32::default_max_relative()
    }
    fn relative_eq(
        &self,
        other: &Self,
        epsilon: Self::Epsilon,
        max_relative: Self::Epsilon,
    ) -> bool {
        let a1 = self.radians();
        let a2 = other.radians();
        a1.relative_eq(&a2, epsilon, max_relative)
    }
}

impl UlpsEq for Angle {
    fn default_max_ulps() -> u32 {
        f32::default_max_ulps()
    }
    fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool {
        let a1 = self.radians();
        let a2 = other.radians();
        a1.ulps_eq(&a2, epsilon, max_ulps)
    }
}

impl AbsDiffEq for Quat {
    type Epsilon = <f32 as AbsDiffEq>::Epsilon;
    fn default_epsilon() -> Self::Epsilon {
        f32::default_epsilon()
    }
    fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool {
        let q1 = self.as_ref();
        let q2 = other.as_ref();
        q1.abs_diff_eq(q2, epsilon)
    }
}

impl RelativeEq for Quat {
    fn default_max_relative() -> Self::Epsilon {
        f32::default_max_relative()
    }
    fn relative_eq(
        &self,
        other: &Self,
        epsilon: Self::Epsilon,
        max_relative: Self::Epsilon,
    ) -> bool {
        let q1 = self.as_ref();
        let q2 = other.as_ref();
        q1.relative_eq(q2, epsilon, max_relative)
    }
}

impl UlpsEq for Quat {
    fn default_max_ulps() -> u32 {
        f32::default_max_ulps()
    }
    fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool {
        let q1 = self.as_ref();
        let q2 = other.as_ref();
        q1.ulps_eq(q2, epsilon, max_ulps)
    }
}

impl AbsDiffEq for Vec2 {
    type Epsilon = <f32 as AbsDiffEq>::Epsilon;
    fn default_epsilon() -> Self::Epsilon {
        f32::default_epsilon()
    }
    fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool {
        let v1 = self.as_ref();
        let v2 = other.as_ref();
        v1.abs_diff_eq(v2, epsilon)
    }
}

impl RelativeEq for Vec2 {
    fn default_max_relative() -> Self::Epsilon {
        f32::default_max_relative()
    }
    fn relative_eq(
        &self,
        other: &Self,
        epsilon: Self::Epsilon,
        max_relative: Self::Epsilon,
    ) -> bool {
        let v1 = self.as_ref();
        let v2 = other.as_ref();
        v1.relative_eq(v2, epsilon, max_relative)
    }
}

impl UlpsEq for Vec2 {
    fn default_max_ulps() -> u32 {
        f32::default_max_ulps()
    }
    fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool {
        let v1 = self.as_ref();
        let v2 = other.as_ref();
        v1.ulps_eq(v2, epsilon, max_ulps)
    }
}

impl AbsDiffEq for Vec3 {
    type Epsilon = <f32 as AbsDiffEq>::Epsilon;
    fn default_epsilon() -> Self::Epsilon {
        f32::default_epsilon()
    }
    fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool {
        let v1 = self.as_ref();
        let v2 = other.as_ref();
        v1.abs_diff_eq(v2, epsilon)
    }
}

impl RelativeEq for Vec3 {
    fn default_max_relative() -> Self::Epsilon {
        f32::default_max_relative()
    }
    fn relative_eq(
        &self,
        other: &Self,
        epsilon: Self::Epsilon,
        max_relative: Self::Epsilon,
    ) -> bool {
        let v1 = self.as_ref();
        let v2 = other.as_ref();
        v1.relative_eq(v2, epsilon, max_relative)
    }
}

impl UlpsEq for Vec3 {
    fn default_max_ulps() -> u32 {
        f32::default_max_ulps()
    }
    fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool {
        let v1 = self.as_ref();
        let v2 = other.as_ref();
        v1.ulps_eq(v2, epsilon, max_ulps)
    }
}

impl AbsDiffEq for Vec4 {
    type Epsilon = <f32 as AbsDiffEq>::Epsilon;
    fn default_epsilon() -> Self::Epsilon {
        f32::default_epsilon()
    }
    fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool {
        let v1 = self.as_ref();
        let v2 = other.as_ref();
        v1.abs_diff_eq(v2, epsilon)
    }
}

impl RelativeEq for Vec4 {
    fn default_max_relative() -> Self::Epsilon {
        f32::default_max_relative()
    }
    fn relative_eq(
        &self,
        other: &Self,
        epsilon: Self::Epsilon,
        max_relative: Self::Epsilon,
    ) -> bool {
        let v1 = self.as_ref();
        let v2 = other.as_ref();
        v1.relative_eq(v2, epsilon, max_relative)
    }
}

impl UlpsEq for Vec4 {
    fn default_max_ulps() -> u32 {
        f32::default_max_ulps()
    }
    fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool {
        let v1 = self.as_ref();
        let v2 = other.as_ref();
        v1.ulps_eq(v2, epsilon, max_ulps)
    }
}

impl AbsDiffEq for Mat2 {
    type Epsilon = <f32 as AbsDiffEq>::Epsilon;
    fn default_epsilon() -> Self::Epsilon {
        f32::default_epsilon()
    }
    fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool {
        let m1 = self.as_ref();
        let m2 = other.as_ref();
        m1.abs_diff_eq(m2, epsilon)
    }
}

impl RelativeEq for Mat2 {
    fn default_max_relative() -> Self::Epsilon {
        f32::default_max_relative()
    }
    fn relative_eq(
        &self,
        other: &Self,
        epsilon: Self::Epsilon,
        max_relative: Self::Epsilon,
    ) -> bool {
        let m1 = self.as_ref();
        let m2 = other.as_ref();
        m1.relative_eq(m2, epsilon, max_relative)
    }
}

impl UlpsEq for Mat2 {
    fn default_max_ulps() -> u32 {
        f32::default_max_ulps()
    }
    fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool {
        let m1 = self.as_ref();
        let m2 = other.as_ref();
        m1.ulps_eq(m2, epsilon, max_ulps)
    }
}

impl AbsDiffEq for Mat3 {
    type Epsilon = <f32 as AbsDiffEq>::Epsilon;
    fn default_epsilon() -> Self::Epsilon {
        f32::default_epsilon()
    }
    fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool {
        self.x_axis().abs_diff_eq(&other.x_axis(), epsilon)
            && self.y_axis().abs_diff_eq(&other.y_axis(), epsilon)
            && self.z_axis().abs_diff_eq(&other.z_axis(), epsilon)
    }
}

impl RelativeEq for Mat3 {
    fn default_max_relative() -> Self::Epsilon {
        f32::default_max_relative()
    }
    fn relative_eq(
        &self,
        other: &Self,
        epsilon: Self::Epsilon,
        max_relative: Self::Epsilon,
    ) -> bool {
        self.x_axis()
            .relative_eq(&other.x_axis(), epsilon, max_relative)
            && self
                .y_axis()
                .relative_eq(&other.y_axis(), epsilon, max_relative)
            && self
                .z_axis()
                .relative_eq(&other.z_axis(), epsilon, max_relative)
    }
}

impl UlpsEq for Mat3 {
    fn default_max_ulps() -> u32 {
        f32::default_max_ulps()
    }
    fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool {
        self.x_axis().ulps_eq(&other.x_axis(), epsilon, max_ulps)
            && self.y_axis().ulps_eq(&other.y_axis(), epsilon, max_ulps)
            && self.z_axis().ulps_eq(&other.z_axis(), epsilon, max_ulps)
    }
}

impl AbsDiffEq for Mat4 {
    type Epsilon = <f32 as AbsDiffEq>::Epsilon;
    fn default_epsilon() -> Self::Epsilon {
        f32::default_epsilon()
    }
    fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool {
        let m1 = self.as_ref();
        let m2 = other.as_ref();
        m1.abs_diff_eq(m2, epsilon)
    }
}

impl RelativeEq for Mat4 {
    fn default_max_relative() -> Self::Epsilon {
        f32::default_max_relative()
    }
    fn relative_eq(
        &self,
        other: &Self,
        epsilon: Self::Epsilon,
        max_relative: Self::Epsilon,
    ) -> bool {
        let m1 = self.as_ref();
        let m2 = other.as_ref();
        m1.relative_eq(m2, epsilon, max_relative)
    }
}

impl UlpsEq for Mat4 {
    fn default_max_ulps() -> u32 {
        f32::default_max_ulps()
    }
    fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool {
        let m1 = self.as_ref();
        let m2 = other.as_ref();
        m1.ulps_eq(m2, epsilon, max_ulps)
    }
}