jagua_rs/geometry/primitives/
point.rs

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
use std::hash::{Hash, Hasher};

use crate::fsize;
use crate::geometry::geo_traits::{CollidesWith, Distance, Transformable, TransformableFrom};
use crate::geometry::transformation::Transformation;

/// Geometric primitive representing a point: (x, y)
#[derive(Debug, Clone, PartialEq, Copy)]
pub struct Point(pub fsize, pub fsize);

impl Transformable for Point {
    fn transform(&mut self, t: &Transformation) -> &mut Self {
        let Point(x, y) = self;
        (*x, *y) = TRANSFORM_FORMULA(*x, *y, t);
        self
    }
}

impl TransformableFrom for Point {
    fn transform_from(&mut self, reference: &Self, t: &Transformation) -> &mut Self {
        let Point(x, y) = self;
        (*x, *y) = TRANSFORM_FORMULA(reference.0, reference.1, t);
        self
    }
}

const TRANSFORM_FORMULA: fn(fsize, fsize, &Transformation) -> (fsize, fsize) =
    |x, y, t| -> (fsize, fsize) {
        let m = t.matrix();
        let t_x = m[0][0].into_inner() * x + m[0][1].into_inner() * y + m[0][2].into_inner() * 1.0;
        let t_y = m[1][0].into_inner() * x + m[1][1].into_inner() * y + m[1][2].into_inner() * 1.0;
        (t_x, t_y)
    };

impl Point {
    pub fn x(&self) -> fsize {
        self.0
    }

    pub fn y(&self) -> fsize {
        self.1
    }
}

impl Distance<Point> for Point {
    #[inline(always)]
    fn distance(&self, other: &Point) -> fsize {
        ((self.0 - other.0).powi(2) + (self.1 - other.1).powi(2)).sqrt()
    }

    #[inline(always)]
    fn sq_distance(&self, other: &Point) -> fsize {
        (self.0 - other.0).powi(2) + (self.1 - other.1).powi(2)
    }
}

impl Eq for Point {}

impl Hash for Point {
    fn hash<H: Hasher>(&self, state: &mut H) {
        let x = self.0.to_bits();
        let y = self.1.to_bits();
        x.hash(state);
        y.hash(state);
    }
}

impl From<Point> for (fsize, fsize) {
    fn from(p: Point) -> Self {
        (p.0, p.1)
    }
}

impl From<(fsize, fsize)> for Point {
    fn from((x, y): (fsize, fsize)) -> Self {
        Point(x, y)
    }
}

impl<T> CollidesWith<T> for Point
where
    T: CollidesWith<Point>,
{
    fn collides_with(&self, other: &T) -> bool {
        other.collides_with(self)
    }
}