#![cfg_attr(feature = "unstable", feature(asm, repr_simd, test))]
extern crate heapsize;
#[macro_use]
extern crate log;
extern crate rustc_serialize;
extern crate serde;
#[cfg(test)]
extern crate rand;
#[cfg(feature = "unstable")]
extern crate test;
extern crate num_traits;
pub use matrix::Matrix4;
pub use matrix2d::Matrix2D;
pub use matrix4d::Matrix4D;
pub use point::{Point2D, Point3D, Point4D};
pub use rect::Rect;
pub use side_offsets::SideOffsets2D;
#[cfg(feature = "unstable")] pub use side_offsets::SideOffsets2DSimdI32;
pub use size::Size2D;
pub mod approxeq;
pub mod length;
#[macro_use]
mod macros;
pub mod matrix;
pub mod matrix2d;
pub mod matrix4d;
pub mod num;
pub mod point;
pub mod rect;
pub mod scale_factor;
pub mod side_offsets;
pub mod size;
mod trig;