1 2 3 4 5 6
use alloc::vec::Vec; use i_float::int::point::IntPoint; pub type IntContour = Vec<IntPoint>; pub type IntShape = Vec<IntContour>; pub type IntShapes = Vec<IntShape>;