transforms 2.0.0-beta.3

A transform library to track reference frames and provide transforms between them.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Geometric primitives: transforms, vectors, quaternions, and an example transformable Point type.

pub mod point;
pub mod quaternion;
pub mod transform;
pub mod vector3;

pub use point::Point;
pub use quaternion::Quaternion;
pub use transform::{Localized, Transform, Transformable};
pub use vector3::Vector3;