transforms 2.1.0

A transform library to track reference frames and provide transforms between them.
Documentation
1
2
3
4
5
6
7
//! Core storage and lookup: the transform Registry and its per-frame Buffers.

pub(crate) mod buffer;
pub(crate) mod registry;

pub(crate) use buffer::Buffer;
pub use registry::{Registry, RegistryError};