pub trait Center {
    // Required method
    fn center(&self) -> PointArray;
}
Expand description

Compute the center of geometries

This first computes the axis-aligned bounding rectangle, then takes the center of that box

Required Methods§

Implementors§