swift_vec 0.4.1

A convenient and comfortable vector maths crate that supports 2D, 3D, and 4D matrices and vectors - along with additional scalar math.
Documentation
//===================================================================================================================================================================================//
//
//  /$$      /$$             /$$               /$$          
// | $$$    /$$$            | $$              |__/          
// | $$$$  /$$$$  /$$$$$$  /$$$$$$    /$$$$$$  /$$ /$$   /$$
// | $$ $$/$$ $$ |____  $$|_  $$_/   /$$__  $$| $$|  $$ /$$/
// | $$  $$$| $$  /$$$$$$$  | $$    | $$  \__/| $$ \  $$$$/ 
// | $$\  $ | $$ /$$__  $$  | $$ /$$| $$      | $$  >$$  $$ 
// | $$ \/  | $$|  $$$$$$$  |  $$$$/| $$      | $$ /$$/\  $$
// |__/     |__/ \_______/   \___/  |__/      |__/|__/  \__/
//
//===================================================================================================================================================================================//

//?
//? Created by LunaticWyrm467 and others.
//? 
//? All code is licensed under the MIT license.
//? Feel free to reproduce, modify, and do whatever.
//?

//!
//! The matrix module contains the definitions of the various matrix types, such as `Mat2`, `Mat3`, and `Mat4`.
//! Also contains global traits and functions that are shared between all matrix types.
//!

mod mat3;

pub use mat3::{ EulerOrder, LookingAtMode, Mat3 };