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

Concept of a polygon with holes.

Required Methods

Get the number of holes.

Implementors