Skip to main content

egml_transform/
lib.rs

1//! Geometric transform operations for GML data.
2//!
3//! `egml-transform` is under active development. Future versions will expose
4//! coordinate-system transforms, affine transformations, and other spatial
5//! operations on the geometry types from [`egml-core`].
6//!
7//! # Errors
8//!
9//! Operations that fail return [`Error`].
10
11mod error;
12
13#[doc(inline)]
14pub use error::Error;