From b1932989b0146c1957ba5bc8a4b8fc1bbf037975 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 31 Jan 2024 19:35:38 +0100 Subject: Improve `Radians` ergonomics --- core/src/angle.rs | 85 +++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 55 insertions(+), 30 deletions(-) (limited to 'core/src/angle.rs') diff --git a/core/src/angle.rs b/core/src/angle.rs index e63df726..30ddad83 100644 --- a/core/src/angle.rs +++ b/core/src/angle.rs @@ -13,7 +13,26 @@ pub struct Radians(pub f32); impl Radians { /// The range of radians of a circle. - pub const RANGE: RangeInclusive = Radians(0.0)..=Radians(2.0 * PI); + pub const RANGE: RangeInclusive = Self(0.0)..=Self(2.0 * PI); + + /// The amount of radians in half a circle. + pub const PI: Self = Self(PI); + + /// Calculates the line in which the angle intercepts the `bounds`. + pub fn to_distance(&self, bounds: &Rectangle) -> (Point, Point) { + let angle = self.0 - FRAC_PI_2; + let r = Vector::new(f32::cos(angle), f32::sin(angle)); + + let distance_to_rect = f32::max( + f32::abs(r.x * bounds.width / 2.0), + f32::abs(r.y * bounds.height / 2.0), + ); + + let start = bounds.center() - r * distance_to_rect; + let end = bounds.center() + r * distance_to_rect; + + (start, end) + } } impl From for Radians { @@ -54,64 +73,70 @@ impl num_traits::FromPrimitive for Radians { } } -impl Radians { - /// Calculates the line in which the angle intercepts the `bounds`. - pub fn to_distance(&self, bounds: &Rectangle) -> (Point, Point) { - let angle = self.0 - FRAC_PI_2; - let r = Vector::new(f32::cos(angle), f32::sin(angle)); - - let distance_to_rect = f32::max( - f32::abs(r.x * bounds.width / 2.0), - f32::abs(r.y * bounds.height / 2.0), - ); - - let start = bounds.center() - r * distance_to_rect; - let end = bounds.center() + r * distance_to_rect; +impl Sub for Radians { + type Output = Self; - (start, end) + fn sub(self, rhs: Self) -> Self::Output { + Self(self.0 - rhs.0) } } -impl SubAssign for Radians { - fn sub_assign(&mut self, rhs: Radians) { +impl SubAssign for Radians { + fn sub_assign(&mut self, rhs: Self) { self.0 = self.0 - rhs.0; } } -impl AddAssign for Radians { +impl Add for Radians { + type Output = Self; + + fn add(self, rhs: Self) -> Self::Output { + Self(self.0 + rhs.0) + } +} + +impl AddAssign for Radians { fn add_assign(&mut self, rhs: Radians) { self.0 = self.0 + rhs.0; } } -impl Add for Radians { - type Output = Radians; +impl Mul for Radians { + type Output = Self; - fn add(self, rhs: Radians) -> Self::Output { - Radians(self.0 + rhs.0) + fn mul(self, rhs: Radians) -> Self::Output { + Radians(self.0 * rhs.0) } } -impl Sub for Radians { - type Output = Radians; +impl Mul for Radians { + type Output = Self; - fn sub(self, rhs: Radians) -> Self::Output { - Radians(self.0 - rhs.0) + fn mul(self, rhs: f32) -> Self::Output { + Self(self.0 * rhs) } } -impl Mul for Radians { +impl Mul for f32 { type Output = Radians; - fn mul(self, rhs: f32) -> Self::Output { - Radians(self.0 * rhs) + fn mul(self, rhs: Radians) -> Self::Output { + Radians(self * rhs.0) } } impl Div for Radians { - type Output = Radians; + type Output = Self; fn div(self, rhs: f32) -> Self::Output { Radians(self.0 / rhs) } } + +impl Div for Radians { + type Output = Self; + + fn div(self, rhs: Self) -> Self::Output { + Self(self.0 / rhs.0) + } +} -- cgit