pub trait PolygonWithHoles<C: CoordinateConcept>: PolygonSet<C> {
    // Required method
    fn num_holes(&self) -> usize;
}
Expand description

Concept of a polygon with holes.

Required Methods§

source

fn num_holes(&self) -> usize

Get the number of holes.

Implementors§