1
2
3
4
5
6
7
//! Contains primitives ready for insertion into an r-tree.

mod line;
mod rectangle;

pub use self::line::Line;
pub use self::rectangle::Rectangle;