normalize() to normalized()
authorTomas Wenström <tomas.wenstrom@gmail.com>
Sat, 23 Jan 2021 14:44:51 +0000 (15:44 +0100)
committerTomas Wenström <tomas.wenstrom@gmail.com>
Sat, 23 Jan 2021 14:44:51 +0000 (15:44 +0100)
src/common.rs
src/core/controller.rs

index 0d82903..591d781 100644 (file)
@@ -18,7 +18,7 @@ impl Point2D<f64> {
         ((self.x * self.x) + (self.y * self.y)).sqrt()
     }
 
-    pub fn normalize(&self) -> Self {
+    pub fn normalized(&self) -> Self {
        let l = self.length();
        Self {
            x: self.x / l,
index 9d23257..23af1b2 100644 (file)
@@ -95,7 +95,7 @@ impl Stick {
     pub fn to_point(&self) -> Point2D<f64> {
        let p = point!(self.x as f64, self.y as f64);
        if p.length() > 1.0 {
-           p.normalize()
+           p.normalized()
        } else {
            p
        }