macro_rules! point { ($x:expr, $y:expr) => { ... }; }
Shorthand notation for creating a point.
use iron_shapes::prelude::*; let p = point!(1, 2); assert_eq!(p, Point::new(1, 2));