From fdb3e8cb8d53449c107388e143345beae162f95e Mon Sep 17 00:00:00 2001 From: Julian T Date: Fri, 29 Jan 2021 00:58:32 +0100 Subject: Finish get_tile on Film --- src/vector.rs | 53 ++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 44 insertions(+), 9 deletions(-) (limited to 'src/vector.rs') diff --git a/src/vector.rs b/src/vector.rs index ff443f5..ac70947 100644 --- a/src/vector.rs +++ b/src/vector.rs @@ -1,5 +1,5 @@ use crate::{Float, Number}; -use std::ops::{Sub}; +use std::ops::{Sub, Add}; #[derive(Clone, Copy)] pub struct Vector2 { @@ -15,7 +15,7 @@ impl Vector2 { Vector2 { x: initial, y: initial } } - pub fn from_xy(x: T, y: T) -> Vector2 { + pub fn new_xy(x: T, y: T) -> Vector2 { Vector2 { x, y } } } @@ -23,10 +23,36 @@ impl Vector2 { impl Sub for Vector2 { type Output = Self; fn sub(self, op: Self) -> Self::Output { - Vector2 { - x: self.x - op.x, - y: self.y - op.y, - } + Self::new_xy( + self.x - op.x, + self.y - op.y, + ) + } +} + +impl Add for Vector2 { + type Output = Self; + fn add(self, op: Self) -> Self::Output { + Self::new_xy( + self.x + op.x, + self.y + op.y, + ) + } +} + +impl Vector2f { + pub fn ceil(&self) -> Self { + Self::new_xy( + self.x.ceil(), + self.y.ceil() + ) + } + + pub fn floor(&self) -> Self { + Self::new_xy( + self.x.ceil(), + self.y.ceil() + ) } } @@ -55,7 +81,7 @@ mod tests { #[test] fn new_vec2() { - let v = Vector2::from_xy(2.0, 10.0); + let v = Vector2::new_xy(2.0, 10.0); assert!(v.x == 2.0 && v.y == 10.0); @@ -66,10 +92,19 @@ mod tests { #[test] fn sub_vec2() { - let v1 = Vector2::from_xy(10, 11); - let v2 = Vector2::from_xy(2, 3); + let v1 = Vector2::new_xy(10, 11); + let v2 = Vector2::new_xy(2, 3); let v3 = v1-v2; assert!(v3.x == 8 && v3.y == 8); } + + #[test] + fn add_vec2() { + let v1 = Vector2::new_xy(10, 11); + let v2 = Vector2::new_xy(2, 3); + + let v3 = v1+v2; + assert!(v3.x == 12 && v3.y == 14); + } } -- cgit v1.2.3