1 2 3 4 5 6 7
//! Geometric primitives (lines, points, etc). pub mod line; pub mod point; // Re-export common types for convenience pub use line::Line; pub use point::Point;