1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use i_float::int::point::IntPoint; #[derive(Clone, Copy)] pub(crate) struct End { pub(crate) index: usize, pub(crate) point: IntPoint, } impl Default for End { #[inline(always)] fn default() -> Self { Self { index: 0, point: IntPoint::ZERO, } } }