X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fcommon.rs;h=6306bf6d6205db897d6207a0e993aaf7d4dbc928;hb=bf7b5671bb386ccd3d325ae3dea33046342d129c;hp=2be427edb10a95ad4f063dbf52b475a1d96fa730;hpb=3583c453df58103da76156b8971d36cb4cab35b3;p=kaka%2Frust-sdl-test.git diff --git a/src/common.rs b/src/common.rs index 2be427e..6306bf6 100644 --- a/src/common.rs +++ b/src/common.rs @@ -19,6 +19,13 @@ impl Point2D { pub fn length(self) -> f64 { ((self.x * self.x) + (self.y * self.y)).sqrt() } + + pub fn to_i32(self) -> Point2D { + Point2D { + x: self.x as i32, + y: self.y as i32, + } + } } macro_rules! point_op { @@ -116,6 +123,12 @@ impl From<(T, T)> for Point2D { } } +impl From> for (T, T) { + fn from(item: Point2D) -> Self { + (item.x, item.y) + } +} + impl From for Point2D { fn from(item: Degrees) -> Self { Point2D { @@ -134,18 +147,20 @@ impl From for Point2D { } } -#[derive(Debug, PartialEq, Clone, Copy)] -struct Degrees(f64); -#[derive(Debug, PartialEq, Clone, Copy)] -struct Radians(f64); +#[derive(Debug, Default, PartialEq, Clone, Copy)] +pub struct Degrees(pub f64); +#[derive(Debug, Default, PartialEq, Clone, Copy)] +pub struct Radians(pub f64); impl Degrees { + #[allow(dead_code)] fn to_radians(&self) -> Radians { Radians(self.0 * std::f64::consts::PI / 180.0) } } impl Radians { + #[allow(dead_code)] fn to_degrees(&self) -> Degrees { Degrees(self.0 * 180.0 * std::f64::consts::FRAC_1_PI) }