1#![feature(step_trait)]
2#![no_main]
3#![allow(warnings)]
4#[macro_use]
5extern crate mech_core;
6extern crate libm;
7extern crate nalgebra as na;
8extern crate paste;
9extern crate simba;
10
11use paste::paste;
12use na::{Vector3, DVector, Vector2, Vector4, RowDVector, Matrix1, Matrix3, Matrix4, RowVector3, RowVector4, RowVector2, DMatrix, Rotation3, Matrix2x3, Matrix3x2, Matrix6, Matrix2};
13use std::ops::*;
14use num_traits::*;
15use std::fmt::Debug;
16use simba::scalar::ClosedNeg;
17use num_traits::Pow;
18use mech_core::matrix::Matrix;
19
20pub mod exclusive;
21pub mod inclusive;
22
23pub use self::exclusive::*;
24pub use self::inclusive::*;
25
26