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
use crate::inner_prelude::*;


///Equivalent to: `&mut (Rect<N>,T)`
#[repr(transparent)]
pub struct BBoxIndirect<'a,T>{
    pub inner: &'a mut T
}
impl<'a,T> BBoxIndirect<'a,T>{
    pub fn new(inner:&'a mut T)->Self{
        BBoxIndirect{inner}
    }
}


unsafe impl<'a,T:HasAabb> HasAabb for BBoxIndirect<'a,T> {
    type Num = T::Num;
    #[inline(always)]
    fn get(&self) -> &Rect<Self::Num>{
        self.inner.get()
    }
}
impl<'a,T:HasInner> HasInner for BBoxIndirect<'a,T>{
    type Inner= T::Inner;

    #[inline(always)]
    fn get_inner(&self)->(&Rect<T::Num>,&Self::Inner){
        self.inner.get_inner()
    }

    #[inline(always)]
    fn get_inner_mut(&mut self)->(&Rect<T::Num>,&mut Self::Inner){
        self.inner.get_inner_mut()
    }
}





///Equivalent to: `(Rect<N>,&mut T)` 
#[repr(C)]
pub struct BBoxMut<'a,N, T> {
    pub rect: axgeom::Rect<N>,
    pub inner: &'a mut T,
}

impl<'a,N, T> BBoxMut<'a,N, T> {
    #[inline(always)]
    pub fn new(rect: axgeom::Rect<N>, inner: &'a mut T) -> BBoxMut<'a,N, T> {
        BBoxMut { rect, inner }
    }
}


unsafe impl<'a,N: NumTrait, T> HasAabb for BBoxMut<'a,N, T> {
    type Num = N;
    #[inline(always)]
    fn get(&self) -> &Rect<Self::Num>{
        &self.rect
    }
}
impl<'a,N:NumTrait,T> HasInner for BBoxMut<'a,N,T>{
    type Inner= T;

    #[inline(always)]
    fn get_inner(&self)->(&Rect<N>,&Self::Inner){
        (&self.rect,self.inner)
    }

    #[inline(always)]
    fn get_inner_mut(&mut self)->(&Rect<N>,&mut Self::Inner){
        (&self.rect,self.inner)
    }
}






#[derive(Copy, Clone)]
#[repr(C)]
///Equivalent to: `(Rect<N>,T)` 
pub struct BBox<N, T> {
    pub rect: axgeom::Rect<N>,
    pub inner: T,
}


impl<N, T> BBox<N, T> {
    #[inline(always)]
    pub fn new(rect: axgeom::Rect<N>, inner: T) -> BBox<N, T> {
        BBox { rect, inner }
    }
}



unsafe impl<N: NumTrait, T> HasAabb for &mut BBox<N, T> {
    type Num = N;
    #[inline(always)]
    fn get(&self) -> &Rect<Self::Num>{
        &self.rect
    }
}
impl<N:NumTrait,T> HasInner for &mut BBox<N,T>{
    type Inner= T;

    #[inline(always)]
    fn get_inner(&self)->(&Rect<N>,&Self::Inner){
        (&self.rect,&self.inner)
    }

    #[inline(always)]
    fn get_inner_mut(&mut self)->(&Rect<N>,&mut Self::Inner){
        (&self.rect,&mut self.inner)
    }
}




unsafe impl<N: NumTrait, T> HasAabb for BBox<N, T> {
    type Num = N;
    #[inline(always)]
    fn get(&self) -> &Rect<Self::Num>{
        &self.rect
    }
}
impl<N:NumTrait,T> HasInner for BBox<N,T>{
    type Inner= T;

    #[inline(always)]
    fn get_inner(&self)->(&Rect<N>,&Self::Inner){
        (&self.rect,&self.inner)
    }

    #[inline(always)]
    fn get_inner_mut(&mut self)->(&Rect<N>,&mut Self::Inner){
        (&self.rect,&mut self.inner)
    }
}