1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#![cfg_attr(feature = "unstable", feature(asm, repr_simd, test, augmented_assignments, op_assign_traits))]
#![cfg_attr(feature = "unstable", feature(deprecated))]
#![cfg_attr(feature = "plugins", feature(custom_derive, plugin))]
#![cfg_attr(feature = "plugins", plugin(heapsize_plugin))]
#![cfg_attr(feature = "plugins", plugin(serde_macros))]
#[cfg(feature = "plugins")]
#[macro_use]
extern crate heapsize;
#[macro_use]
extern crate log;
extern crate rustc_serialize;
#[cfg(feature = "plugins")]
extern crate serde;
#[cfg(test)]
extern crate rand;
#[cfg(feature = "unstable")]
extern crate test;
extern crate num as num_lib;
pub use matrix::Matrix4;
pub use matrix2d::Matrix2D;
pub use matrix4d::Matrix4D;
pub use point::{Point2D, Point3D, Point4D};
pub use rect::Rect;
#[cfg(feature = "unstable")]
pub use side_offsets::SideOffsets2D;
#[cfg(feature = "unstable")]
pub use side_offsets::SideOffsets2DSimdI32;
pub use size::Size2D;
pub mod approxeq;
pub mod length;
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;