use crate::Vector; use num_traits::{Float, Num}; use std::fmt; /// A 2D point. #[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] pub struct Point { /// The X coordinate. pub x: T, /// The Y coordinate. pub y: T, } impl Point { /// The origin (i.e. a [`Point`] at (0, 0)). pub const ORIGIN: Self = Self::new(0.0, 0.0); } impl Point { /// Creates a new [`Point`] with the given coordinates. pub const fn new(x: T, y: T) -> Self { Self { x, y } } /// Computes the distance to another [`Point`]. pub fn distance(&self, to: Self) -> T where T: Float, { let a = self.x - to.x; let b = self.y - to.y; a.hypot(b) } } impl From<[T; 2]> for Point where T: Num, { fn from([x, y]: [T; 2]) -> Self { Point { x, y } } } impl From<(T, T)> for Point where T: Num, { fn from((x, y): (T, T)) -> Self { Self { x, y } } } impl From> for [T; 2] { fn from(point: Point) -> [T; 2] { [point.x, point.y] } } impl std::ops::Add> for Point where T: std::ops::Add, { type Output = Self; fn add(self, vector: Vector) -> Self { Self { x: self.x + vector.x, y: self.y + vector.y, } } } impl std::ops::Sub> for Point where T: std::ops::Sub, { type Output = Self; fn sub(self, vector: Vector) -> Self { Self { x: self.x - vector.x, y: self.y - vector.y, } } } impl std::ops::Sub> for Point where T: std::ops::Sub, { type Output = Vector; fn sub(self, point: Self) -> Vector { Vector::new(self.x - point.x, self.y - point.y) } } impl fmt::Display for Point where T: fmt::Display, { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "Point {{ x: {}, y: {} }}", self.x, self.y) } }