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
use std::ops::Add;
use std::ops::Sub;
use std::ops::Neg;

use box2d::Box2d;


struct Point2dBuilder {
    x: i32,
    y: i32,
}

impl Point2dBuilder {
    fn new() -> Self{
        Point2dBuilder{x: 0, y: 0}
    }

    fn set_x(&mut self, x_:i32) -> &mut Self{
        self.x = x_;
        self
    }

    fn set_y(&mut self, y_:i32) -> &mut Self{
        self.y = y_;
        self
    }

    fn finalize(&mut self) -> Point2d {
        Point2d{ x: self.x, y: self.y, }
    }
}

/// Point structure in 2 dimensions on an evenly integer spaced grid. 
#[derive(Debug,Clone,Copy)]
pub struct Point2d
{
    pub x: i32,
    pub y: i32,
}

impl Point2d {
    pub fn new(x: i32, y: i32) -> Point2d {
        Point2dBuilder::new().set_x(x).set_y(y).finalize()
    }

    /// This function returns true if the point is contained in b ( a 2d box)
    pub fn is_contained(&self, b: Box2d) -> bool {
        (self.x >= b.x0 && self.x <= b.x1 ) 
            && (self.y >= b.y0 && self.y <= b.y1 ) 
    }
}

/// The addition of a Point2d with another Point2d
/// 
/// # Arguments
///
/// * `&self` - A Point2d
/// * `rhs`  - A Point2d
///
/// # Example
///
/// ```
/// extern crate palarust;
/// use palarust::point2d::Point2d;
/// fn main () {
///     let p1 = Point2d::new(1, 4);
///     let p2 = Point2d::new(3, 8);
///     
///     assert_eq!(p1+p2, Point2d::new(4, 12));
/// }
/// ```
impl Add for Point2d {
    type Output = Point2d;

    fn add(self, rhs: Point2d) -> Point2d {
        Point2d{ x: self.x + rhs.x, y: self.y + rhs.y}
    }
}

/// The subtraction of a Point2d with another Point2d
/// 
/// # Arguments
///
/// * `&self` - A Point2d
/// * `rhs`  - A Point2d
///
/// # Example
///
/// ```
/// extern crate palarust;
/// use palarust::point2d::Point2d;
/// fn main () {
///     let p1 = Point2d::new(1, 4);
///     let p2 = Point2d::new(3, 8);
///     
///     assert_eq!(p1-p2, Point2d::new(-2, -4));
/// }
/// ```
impl Sub for Point2d {
    type Output = Point2d;

    fn sub(self, rhs: Point2d) -> Point2d {
        Point2d{ x: self.x - rhs.x, y: self.y - rhs.y}
    }
}

/// The unary - of a Point2d
/// 
/// # Arguments
///
/// * `&self` - A Point2d
///
/// # Example
///
/// ```
/// extern crate palarust;
/// use palarust::point2d::Point2d;
/// fn main () {
///     let p1 = Point2d::new(1, 4);
///     
///     assert_eq!(-p1, Point2d::new(-1, -4));
/// }
/// ```
impl Neg for Point2d {
    type Output = Point2d;

    fn neg(self) -> Point2d {
        Point2d{ x: -self.x, y: -self.y}
    }
}


/// The equality of two Point2d 
/// 
/// # Arguments
///
/// * `&self` - A Point2d
/// * `&other`  - A Point2d
///
/// # Example
///
/// ```
/// extern crate palarust;
/// use palarust::point2d::Point2d;
/// fn main () {
///     let b = Point2d::new(1, 4);
///     
///     assert_eq!(b, Point2d::new(1, 4));
///     assert!(b != Point2d::new(1, 5), "b is not equal to Point2d::new(1, 4).");
/// }
/// ```
impl PartialEq for Point2d {
    fn eq(&self, other: &Point2d) -> bool {
        (self.x == other.x && self.y == other.y)
    }
}