pub type Point = Point2<f64>;Aliased Type§
#[repr(C)]pub struct Point {
pub coords: Matrix<f64, Const<2>, Const<1>, ArrayStorage<f64, 2, 1>>,
}Fields§
§coords: Matrix<f64, Const<2>, Const<1>, ArrayStorage<f64, 2, 1>>The coordinates of this point, i.e., the shift from the origin.