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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
//! Convex polygon primitive

use cgmath::{BaseFloat, Point2, Vector2};
use cgmath::prelude::*;

use {Aabb2, Line2, Ray2};
use prelude::*;
use primitive::util::{get_bound, get_max_point};

/// Convex polygon primitive.
///
/// Can contain any number of vertices, but a high number of vertices will
/// affect performance of course. Vertices need to be in CCW order.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct ConvexPolygon<S> {
    /// Vertices of the convex polygon.
    pub vertices: Vec<Point2<S>>,
}

impl<S> ConvexPolygon<S> {
    /// Create a new convex polygon from the given vertices. Vertices need to be in CCW order.
    pub fn new(vertices: Vec<Point2<S>>) -> Self {
        Self { vertices }
    }
}

impl<S> Primitive for ConvexPolygon<S>
where
    S: BaseFloat,
{
    type Point = Point2<S>;

    fn support_point<T>(&self, direction: &Vector2<S>, transform: &T) -> Point2<S>
    where
        T: Transform<Point2<S>>,
    {
        if self.vertices.len() < 10 {
            get_max_point(self.vertices.iter(), direction, transform)
        } else {
            support_point(&self.vertices, direction, transform)
        }
    }
}

impl<S> ComputeBound<Aabb2<S>> for ConvexPolygon<S>
where
    S: BaseFloat,
{
    fn compute_bound(&self) -> Aabb2<S> {
        get_bound(self.vertices.iter())
    }
}

impl<S> Discrete<Ray2<S>> for ConvexPolygon<S>
where
    S: BaseFloat,
{
    /// Ray must be in object space
    fn intersects(&self, ray: &Ray2<S>) -> bool {
        for j in 0..self.vertices.len() - 1 {
            let i = if j == 0 {
                self.vertices.len() - 1
            } else {
                j - 1
            };
            let normal = Vector2::new(
                self.vertices[j].y - self.vertices[i].y,
                self.vertices[i].x - self.vertices[j].x,
            );
            // check if edge normal points toward the ray origin
            if ray.direction.dot(normal) < S::zero()
                // check line ray intersection
                && ray.intersection(&Line2::new(self.vertices[i], self.vertices[j]))
                    .is_some()
            {
                return true;
            }
        }

        false
    }
}

impl<S> Continuous<Ray2<S>> for ConvexPolygon<S>
where
    S: BaseFloat,
{
    type Result = Point2<S>;

    /// Ray must be in object space
    fn intersection(&self, ray: &Ray2<S>) -> Option<Point2<S>> {
        for j in 0..self.vertices.len() - 1 {
            let i = if j == 0 {
                self.vertices.len() - 1
            } else {
                j - 1
            };
            let normal = Vector2::new(
                self.vertices[j].y - self.vertices[i].y,
                self.vertices[i].x - self.vertices[j].x,
            );
            // check if edge normal points toward the ray origin
            if ray.direction.dot(normal) < S::zero() {
                // check line ray intersection
                if let point @ Some(_) =
                    ray.intersection(&Line2::new(self.vertices[i], self.vertices[j]))
                {
                    return point;
                }
            }
        }

        None
    }
}

fn support_point<P, T>(vertices: &[P], direction: &P::Diff, transform: &T) -> P
where
    P: EuclideanSpace,
    P::Scalar: BaseFloat,
    T: Transform<P>,
{
    let direction = transform.inverse_transform_vector(*direction).unwrap();

    // figure out where to start, if the direction is negative for the first vertex,
    // go halfway around the polygon
    let mut start_index: i32 = 0;
    let mut max_dot = vertices[0].dot(direction);
    if max_dot < P::Scalar::zero() {
        start_index = vertices.len() as i32 / 2;
        max_dot = dot_index(vertices, start_index, &direction);
    }

    let left_dot = dot_index(vertices, start_index - 1, &direction);
    let right_dot = dot_index(vertices, start_index + 1, &direction);

    // check if start is highest
    let p = if start_index == 0 && max_dot > left_dot && max_dot > right_dot {
        vertices[0]
    } else {
        // figure out iteration direction
        let mut add: i32 = 1;
        let mut previous_dot = left_dot;
        if left_dot > max_dot && left_dot > right_dot {
            add = -1;
            previous_dot = right_dot;
        }

        // iterate
        let mut index = start_index + add;
        let mut current_dot = max_dot;
        if index == vertices.len() as i32 {
            index = 0;
        }
        if index == -1 {
            index = vertices.len() as i32 - 1;
        }
        while index != start_index {
            let next_dot = dot_index(vertices, index + add, &direction);
            if current_dot > previous_dot && current_dot > next_dot {
                break;
            }
            previous_dot = current_dot;
            current_dot = next_dot;
            index += add;
            if index == vertices.len() as i32 {
                index = 0;
            }
            if index == -1 {
                index = vertices.len() as i32 - 1;
            }
        }
        vertices[index as usize]
    };

    transform.transform_point(p)
}

#[inline]
fn dot_index<P>(vertices: &[P], index: i32, direction: &P::Diff) -> P::Scalar
where
    P: EuclideanSpace,
    P::Scalar: BaseFloat,
{
    let index_u = index as usize;
    if index_u == vertices.len() {
        vertices[0]
    } else if index == -1 {
        vertices[vertices.len() - 1]
    } else {
        vertices[index_u]
    }.dot(*direction)
}

#[cfg(test)]
mod tests {
    use cgmath::{Basis2, Decomposed, Point2, Rad, Vector2};

    use super::*;
    use {Aabb2, Ray2};

    #[test]
    fn test_support_point() {
        let vertices = vec![
            Point2::new(5., 5.),
            Point2::new(4., 6.),
            Point2::new(3., 7.),
            Point2::new(2., 6.),
            Point2::new(1., 6.),
            Point2::new(0., 5.),
            Point2::new(-1., 4.),
            Point2::new(-3., 3.),
            Point2::new(-6., 1.),
            Point2::new(-5., 0.),
            Point2::new(-4., -1.),
            Point2::new(-2., -3.),
            Point2::new(0., -7.),
            Point2::new(1., -8.),
            Point2::new(2., -5.),
            Point2::new(3., 0.),
            Point2::new(4., 3.),
        ];
        let t = transform(0., 0., 0.);
        let point = support_point(&vertices, &Vector2::new(-1., 0.), &t);
        assert_eq!(Point2::new(-5., 0.), point);

        let point = support_point(&vertices, &Vector2::new(0., -1.), &t);
        assert_eq!(Point2::new(1., -8.), point);

        let point = support_point(&vertices, &Vector2::new(0., 1.), &t);
        assert_eq!(Point2::new(3., 7.), point);

        let point = support_point(&vertices, &Vector2::new(1., 0.), &t);
        assert_eq!(Point2::new(5., 5.), point);
    }

    #[test]
    fn test_bound() {
        let vertices = vec![
            Point2::new(5., 5.),
            Point2::new(4., 6.),
            Point2::new(3., 7.),
            Point2::new(2., 6.),
            Point2::new(1., 6.),
            Point2::new(0., 5.),
            Point2::new(-1., 4.),
            Point2::new(-3., 3.),
            Point2::new(-6., 1.),
            Point2::new(-5., 0.),
            Point2::new(-4., -1.),
            Point2::new(-2., -3.),
            Point2::new(0., -7.),
            Point2::new(1., -8.),
            Point2::new(2., -5.),
            Point2::new(3., 0.),
            Point2::new(4., 3.),
        ];
        let polygon = ConvexPolygon::new(vertices);
        assert_eq!(
            Aabb2::new(Point2::new(-6., -8.), Point2::new(5., 7.)),
            polygon.compute_bound()
        );
    }

    #[test]
    fn test_ray_discrete() {
        let vertices = vec![
            Point2::new(5., 5.),
            Point2::new(4., 6.),
            Point2::new(3., 7.),
            Point2::new(2., 6.),
            Point2::new(1., 6.),
            Point2::new(0., 5.),
            Point2::new(-1., 4.),
            Point2::new(-3., 3.),
            Point2::new(-6., 1.),
            Point2::new(-5., 0.),
            Point2::new(-4., -1.),
            Point2::new(-2., -3.),
            Point2::new(0., -7.),
            Point2::new(1., -8.),
            Point2::new(2., -5.),
            Point2::new(3., 0.),
            Point2::new(4., 3.),
        ];
        let polygon = ConvexPolygon::new(vertices);
        let ray = Ray2::new(Point2::new(0., 10.), Vector2::new(0., -1.));
        assert!(polygon.intersects(&ray));
        let ray = Ray2::new(Point2::new(0., 10.), Vector2::new(0., 1.));
        assert!(!polygon.intersects(&ray));
        let ray = Ray2::new(Point2::new(0., 7.2), Vector2::new(1., 0.));
        assert!(!polygon.intersects(&ray));
        let ray = Ray2::new(Point2::new(0., 6.8), Vector2::new(1., 0.));
        assert!(polygon.intersects(&ray));
    }

    #[test]
    fn test_ray_discrete_transformed() {
        let vertices = vec![
            Point2::new(5., 5.),
            Point2::new(4., 6.),
            Point2::new(3., 7.),
            Point2::new(2., 6.),
            Point2::new(1., 6.),
            Point2::new(0., 5.),
            Point2::new(-1., 4.),
            Point2::new(-3., 3.),
            Point2::new(-6., 1.),
            Point2::new(-5., 0.),
            Point2::new(-4., -1.),
            Point2::new(-2., -3.),
            Point2::new(0., -7.),
            Point2::new(1., -8.),
            Point2::new(2., -5.),
            Point2::new(3., 0.),
            Point2::new(4., 3.),
        ];
        let polygon = ConvexPolygon::new(vertices);
        let t = transform(0., 0., 0.);
        let ray = Ray2::new(Point2::new(0., 10.), Vector2::new(0., -1.));
        assert!(polygon.intersects_transformed(&ray, &t));
        let ray = Ray2::new(Point2::new(0., 10.), Vector2::new(0., 1.));
        assert!(!polygon.intersects_transformed(&ray, &t));
        let ray = Ray2::new(Point2::new(0., 7.2), Vector2::new(1., 0.));
        assert!(!polygon.intersects_transformed(&ray, &t));
        let ray = Ray2::new(Point2::new(0., 6.8), Vector2::new(1., 0.));
        assert!(polygon.intersects_transformed(&ray, &t));
        let t = transform(0., -2., 0.);
        assert!(!polygon.intersects_transformed(&ray, &t));
        let t = transform(0., 0., 0.3);
        assert!(polygon.intersects_transformed(&ray, &t));
    }

    #[test]
    fn test_ray_continuous() {
        let vertices = vec![
            Point2::new(5., 5.),
            Point2::new(4., 6.),
            Point2::new(3., 7.),
            Point2::new(2., 6.),
            Point2::new(1., 6.),
            Point2::new(0., 5.),
            Point2::new(-1., 4.),
            Point2::new(-3., 3.),
            Point2::new(-6., 1.),
            Point2::new(-5., 0.),
            Point2::new(-4., -1.),
            Point2::new(-2., -3.),
            Point2::new(0., -7.),
            Point2::new(1., -8.),
            Point2::new(2., -5.),
            Point2::new(3., 0.),
            Point2::new(4., 3.),
        ];
        let polygon = ConvexPolygon::new(vertices);
        let ray = Ray2::new(Point2::new(0., 10.), Vector2::new(0., -1.));
        assert_eq!(Some(Point2::new(0., 5.)), polygon.intersection(&ray));
        let ray = Ray2::new(Point2::new(0., 10.), Vector2::new(0., 1.));
        assert_eq!(None, polygon.intersection(&ray));
        let ray = Ray2::new(Point2::new(0., 7.2), Vector2::new(1., 0.));
        assert_eq!(None, polygon.intersection(&ray));
        let ray = Ray2::new(Point2::new(0., 6.8), Vector2::new(1., 0.));
        let p = polygon.intersection(&ray).unwrap();
        assert_ulps_eq!(2.8, p.x);
        assert_ulps_eq!(6.8, p.y);
    }

    #[test]
    fn test_ray_continuous_transformed() {
        let vertices = vec![
            Point2::new(5., 5.),
            Point2::new(4., 6.),
            Point2::new(3., 7.),
            Point2::new(2., 6.),
            Point2::new(1., 6.),
            Point2::new(0., 5.),
            Point2::new(-1., 4.),
            Point2::new(-3., 3.),
            Point2::new(-6., 1.),
            Point2::new(-5., 0.),
            Point2::new(-4., -1.),
            Point2::new(-2., -3.),
            Point2::new(0., -7.),
            Point2::new(1., -8.),
            Point2::new(2., -5.),
            Point2::new(3., 0.),
            Point2::new(4., 3.),
        ];
        let t = transform(0., 0., 0.);
        let polygon = ConvexPolygon::new(vertices);
        let ray = Ray2::new(Point2::new(0., 10.), Vector2::new(0., -1.));
        assert_eq!(
            Some(Point2::new(0., 5.)),
            polygon.intersection_transformed(&ray, &t)
        );
        let ray = Ray2::new(Point2::new(0., 10.), Vector2::new(0., 1.));
        assert_eq!(None, polygon.intersection_transformed(&ray, &t));
        let ray = Ray2::new(Point2::new(0., 7.2), Vector2::new(1., 0.));
        assert_eq!(None, polygon.intersection_transformed(&ray, &t));
        let ray = Ray2::new(Point2::new(0., 6.8), Vector2::new(1., 0.));
        let p = polygon.intersection_transformed(&ray, &t).unwrap();
        assert_ulps_eq!(2.8, p.x);
        assert_ulps_eq!(6.8, p.y);
        let t = transform(0., -2., 0.);
        assert_eq!(None, polygon.intersection_transformed(&ray, &t));
        let t = transform(0., 0., 0.3);
        let p = polygon.intersection_transformed(&ray, &t).unwrap();
        assert_ulps_eq!(0.38913357, p.x);
        assert_ulps_eq!(6.8, p.y);
    }

    fn transform(dx: f32, dy: f32, rot: f32) -> Decomposed<Vector2<f32>, Basis2<f32>> {
        Decomposed {
            scale: 1.,
            rot: Rotation2::from_angle(Rad(rot)),
            disp: Vector2::new(dx, dy),
        }
    }
}