mulberry 0.1.0

Coordinate transformation tree with a focus on efficiency.
Documentation
1
2
3
4
5
pub trait Group {
    fn identity() -> Self;
    fn inverse(&self) -> Self;
    fn compose(&self, other: &Self) -> Self;
}