i_overlay 7.0.2

Boolean Operations for 2D Polygons: Supports intersection, union, difference, xor, and self-intersections for all polygon varieties.
Documentation
1
2
3
4
5
6
7
use i_float::int::number::int::IntNumber;

#[derive(Debug, Clone, PartialEq)]
pub(crate) struct LineRange<I: IntNumber> {
    pub(crate) min: I,
    pub(crate) max: I,
}