1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12

pub mod rect;
pub mod qtree_node;

pub use rect::*;
pub use qtree_node::*;

#[cfg(feature = "ggez")]
pub type Point2 = ggez::graphics::Point2;

#[cfg(not(feature = "ggez"))]
pub type Point2 = nalgebra::Point2<f32>;