egml-core 0.0.2-alpha.5

Core primitives and operations for processing GML data.
Documentation
1
2
3
4
5
use crate::model::geometry::Envelope;

pub trait ComputeEnvelope {
    fn compute_envelope(&self) -> Option<Envelope>;
}