mod boolean_op;
pub mod color;
pub mod core_error;
pub mod geo2d;
#[cfg(feature = "geo3d")]
pub mod geo3d;
pub mod render_resolution;
pub mod theme;
pub mod traits;
pub type Integer = i64;
pub type Scalar = f64;
pub type Vec2 = cgmath::Vector2<Scalar>;
pub type Vec3 = cgmath::Vector3<Scalar>;
pub type Vec4 = cgmath::Vector4<Scalar>;
pub type Mat2 = cgmath::Matrix2<Scalar>;
pub type Mat3 = cgmath::Matrix3<Scalar>;
pub type Mat4 = cgmath::Matrix4<Scalar>;
pub type Angle = cgmath::Rad<Scalar>;
pub use boolean_op::BooleanOp;
pub use color::*;
pub use core_error::*;
pub use geo2d::*;
pub use geo3d::*;
pub use render_resolution::*;