1#![deny(missing_docs)] 2 3//! Convenience structs for 2D shapes 4extern crate graphics; 5 6pub use self::line::Line; 7pub use self::point::Point; 8pub use self::rect::Rect; 9pub use self::size::Size; 10 11mod line; 12mod point; 13mod rect; 14mod size;