rene 0.2.0

Computational geometry.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::types::Box;

impl<Scalar: PartialEq> PartialEq for Box<Scalar> {
    fn eq(&self, other: &Self) -> bool {
        self.max_x == other.max_x
            && self.max_y == other.max_y
            && self.min_x == other.min_x
            && self.min_y == other.min_y
    }
}