diff options
author | 2024-01-31 19:42:38 +0100 | |
---|---|---|
committer | 2024-01-31 19:42:38 +0100 | |
commit | 66c8a804c6b665718a2cc80222ba8b906b543014 (patch) | |
tree | 5034f46b591dee2bc73b16d09a4711f23a69a236 /core | |
parent | 8ed3490280a4dd8a1d4e3cd421b1785725f65865 (diff) | |
parent | b1932989b0146c1957ba5bc8a4b8fc1bbf037975 (diff) | |
download | iced-66c8a804c6b665718a2cc80222ba8b906b543014.tar.gz iced-66c8a804c6b665718a2cc80222ba8b906b543014.tar.bz2 iced-66c8a804c6b665718a2cc80222ba8b906b543014.zip |
Merge pull request #2029 from ua-kxie/arc-and-ellipse-radians-type
use radians type in arc and ellipse
Diffstat (limited to 'core')
-rw-r--r-- | core/src/angle.rs | 97 |
1 files changed, 83 insertions, 14 deletions
diff --git a/core/src/angle.rs b/core/src/angle.rs index 102b69cf..30ddad83 100644 --- a/core/src/angle.rs +++ b/core/src/angle.rs @@ -1,7 +1,7 @@ use crate::{Point, Rectangle, Vector}; use std::f32::consts::{FRAC_PI_2, PI}; -use std::ops::RangeInclusive; +use std::ops::{Add, AddAssign, Div, Mul, RangeInclusive, Sub, SubAssign}; /// Degrees #[derive(Debug, Copy, Clone, PartialEq, PartialOrd)] @@ -13,7 +13,26 @@ pub struct Radians(pub f32); impl Radians { /// The range of radians of a circle. - pub const RANGE: RangeInclusive<Radians> = Radians(0.0)..=Radians(2.0 * PI); + pub const RANGE: RangeInclusive<Self> = 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<Degrees> for Radians { @@ -54,20 +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)); +impl Sub for Radians { + type Output = Self; - let distance_to_rect = f32::max( - f32::abs(r.x * bounds.width / 2.0), - f32::abs(r.y * bounds.height / 2.0), - ); + fn sub(self, rhs: Self) -> Self::Output { + Self(self.0 - rhs.0) + } +} - let start = bounds.center() - r * distance_to_rect; - let end = bounds.center() + r * distance_to_rect; +impl SubAssign for Radians { + fn sub_assign(&mut self, rhs: Self) { + self.0 = self.0 - rhs.0; + } +} - (start, end) +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 Mul for Radians { + type Output = Self; + + fn mul(self, rhs: Radians) -> Self::Output { + Radians(self.0 * rhs.0) + } +} + +impl Mul<f32> for Radians { + type Output = Self; + + fn mul(self, rhs: f32) -> Self::Output { + Self(self.0 * rhs) + } +} + +impl Mul<Radians> for f32 { + type Output = Radians; + + fn mul(self, rhs: Radians) -> Self::Output { + Radians(self * rhs.0) + } +} + +impl Div<f32> for 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) } } |