1
2
3
4
5
use point::Point;
use num_traits::Float;

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