pub trait FetchPoints2D {
// Required method
fn fetch_points_2d(&self) -> Vec<Vec2> ⓘ;
}
Expand description
Trait to return all points of 2D geometry.
Required Methods§
Sourcefn fetch_points_2d(&self) -> Vec<Vec2> ⓘ
fn fetch_points_2d(&self) -> Vec<Vec2> ⓘ
Returns all points.