batbox-la 0.16.0

Linear algebra
Documentation
//! Linear algebra
#![warn(missing_docs)]

use batbox_approx::*;
use batbox_cmp::*;
use batbox_num::*;
use batbox_range::*;
use serde::{Deserialize, Serialize};
use std::ops::*;

mod aabb;
mod angle;
mod mat;
mod quat;
mod vec;

pub use aabb::*;
pub use angle::*;
pub use mat::*;
pub use quat::*;
pub use vec::*;