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