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
use core::ops::Sub;
use crate::Vec2;

/// 
/// ```
/// use gfxmath_vec2::Vec2;
/// 
/// let mut a = Vec2::<f32>::new(0.5, 2.5);
/// let b = Vec2::<f32>::new(1.5, 2.5);
/// let c = Vec2::from(&a - &b);
/// 
/// a.x = 1.0;
/// 
/// assert_eq!(-1.0, c.x);
/// assert_eq!( 0.0, c.y);
/// 
/// let c2 = Vec2::from(a - b);
///
/// assert_eq!(-0.5, c2.x);
/// assert_eq!( 0.0, c2.y);
/// ```
#[opimps::impl_ops(Sub)]
#[inline]
fn sub<T: Sub<Output = T> + Copy>(self: Vec2<T>, rhs: Vec2<T>) -> Vec2<T> {
    let x = self.x - rhs.x;
    let y = self.y - rhs.y;
    Vec2 { x, y }
}

/// ```
/// use gfxmath_vec2::Vec2;
/// 
/// let v = Vec2::new(1.0, 2.0);
///
/// let res: Vec2<f32> = (v - 3.0).into();
/// 
/// assert_eq!(-2.0, res.x);
/// assert_eq!(-1.0, res.y);
/// ```
#[opimps::impl_ops_rprim(Sub)]
#[inline]
fn sub<T>(self: Vec2<T>, rhs: T) -> Vec2<T> where T: Sub<Output = T> + Copy {
    Vec2 { x: self.x - rhs, y: self.y - rhs }
}

/// ```
/// use gfxmath_vec2::Vec2;
/// 
/// let v = Vec2::<f32>::new(1.0, 2.0);
///
/// let res = (3.0 - v);
/// 
/// assert_eq!( 2.0, res.x);
/// assert_eq!( 1.0, res.y);
/// ```
#[opimps::impl_ops_lprim(Sub)]
#[inline]
fn sub(self: f32, rhs: Vec2<f32>) -> Vec2<f32> {
    let x = self - rhs.x;
    let y = self - rhs.y;
    Vec2 { x, y }
}

/// ```
/// use gfxmath_vec2::Vec2;
/// 
/// let v = Vec2::<f32>::new(1.0, 2.0);
///
/// let res = (3.0 - v);
/// 
/// assert_eq!( 2.0, res.x);
/// assert_eq!( 1.0, res.y);
/// ```
#[opimps::impl_ops_lprim(Sub)]
#[inline]
fn sub(self: f64, rhs: Vec2<f64>) -> Vec2<f64> {
    let x = self - rhs.x;
    let y = self - rhs.y;
    Vec2 { x, y }
}

/// ```
/// use gfxmath_vec2::Vec2;
/// 
/// let v = Vec2::<i32>::new(1, 2);
///
/// let res = (3 - v);
/// 
/// assert_eq!( 2, res.x);
/// assert_eq!( 1, res.y);
/// ```
#[opimps::impl_ops_lprim(Sub)]
#[inline]
fn sub(self: i32, rhs: Vec2<i32>) -> Vec2<i32> {
    let x = self - rhs.x;
    let y = self - rhs.y;
    Vec2 { x, y }
}

/// ```
/// use gfxmath_vec2::Vec2;
/// 
/// let v = Vec2::<i64>::new(1, 2);
///
/// let res = (3 - v);
/// 
/// assert_eq!( 2, res.x);
/// assert_eq!( 1, res.y);
/// ```
#[opimps::impl_ops_lprim(Sub)]
#[inline]
fn sub(self: i64, rhs: Vec2<i64>) -> Vec2<i64> {
    let x = self - rhs.x;
    let y = self - rhs.y;
    Vec2 { x, y }
}