pub type Point = Point<f32>;
A macro to create a new graphics shape.
pub struct Point { pub x: f32, pub y: f32, }
x: f32
The x-coordinate of the point
y: f32
The y-coordinate of the point