mop-structs 0.0.2

Low-level structures for MOP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(uniform_paths, proc_macro_path_invoc)]
#![cfg_attr(
    feature = "cargo-clippy",
    allow(bool_comparison, new_without_default_derive)
)]

pub mod cuboid;
mod dim;
pub mod matrix;
pub mod prelude;
pub mod utils;
pub mod vec;

pub(crate) use crate::dim::Dim;