1mod boolean_op;
7
8pub mod bounds;
9pub mod color;
10pub mod core_error;
11pub mod geo2d;
12#[cfg(feature = "geo3d")]
13pub mod geo3d;
14pub mod render;
15pub mod theme;
16pub mod traits;
17pub mod triangle;
18
19pub type Integer = i64;
21pub type Scalar = f64;
23pub type Vec2 = cgmath::Vector2<Scalar>;
25pub type Vec3 = cgmath::Vector3<Scalar>;
27pub type Vec4 = cgmath::Vector4<Scalar>;
29pub type Mat2 = cgmath::Matrix2<Scalar>;
31pub type Mat3 = cgmath::Matrix3<Scalar>;
33pub type Mat4 = cgmath::Matrix4<Scalar>;
35pub type Angle = cgmath::Rad<Scalar>;
37
38pub use boolean_op::BooleanOp;
39pub use bounds::*;
40pub use color::*;
41pub use core_error::*;
42pub use geo2d::*;
43pub use geo3d::*;
44pub use render::*;
45pub use triangle::*;