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
//! Basic linear and vector geometry for two-dimensional Euclidean geometry

#![deny(
    rust_2018_idioms,
    missing_debug_implementations,
    missing_docs,
    clippy::doc_markdown,
    clippy::unimplemented
)]

#[cfg_attr(test, macro_use)]
#[cfg(test)]
extern crate nearly_eq;

#[macro_use]
extern crate serde_derive;

mod aabb;
pub use self::aabb::*;

mod radians;
pub use self::radians::*;

mod polygon;
pub use self::polygon::*;

mod vector;
pub use self::vector::*;

mod point;
pub use self::point::*;

mod convex_hull;
pub use self::convex_hull::*;