1
2
3
4
5
use polygon::Polygon;
use num_traits::Float;

#[derive(Clone, Debug, PartialEq)]
pub struct MultiPolygon<T>(pub Vec<Polygon<T>>) where T: Float;