1 2 3 4 5 6 7 8 9 10 11
mod rect; use nalgebra as na; #[derive(Debug, Copy, Clone, Eq, PartialEq)] pub struct Rect<T: na::Scalar> { pub left: T, pub right: T, pub bottom: T, pub top: T, }
1 2 3 4 5 6 7 8 9 10 11
mod rect; use nalgebra as na; #[derive(Debug, Copy, Clone, Eq, PartialEq)] pub struct Rect<T: na::Scalar> { pub left: T, pub right: T, pub bottom: T, pub top: T, }