geocart 0.1.2

A bridge between geographic and cartesian coordinates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Transform definitions and implementations.

mod rotation;

pub use self::rotation::Rotation;

/// A geometric transformation.
pub trait Transform<Rhs> {
    /// Performs the transformation over `Rhs`.
    fn transform(&self, point: Rhs) -> Rhs;
}