summaryrefslogtreecommitdiffstats
path: root/core/src/point.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/point.rs')
-rw-r--r--core/src/point.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/core/src/point.rs b/core/src/point.rs
index d351befd..9bf7726b 100644
--- a/core/src/point.rs
+++ b/core/src/point.rs
@@ -75,11 +75,3 @@ impl std::ops::Sub<Point> for Point {
Vector::new(self.x - point.x, self.y - point.y)
}
}
-
-impl std::ops::Add<Point> for Point {
- type Output = Point;
-
- fn add(self, point: Point) -> Point {
- Point::new(self.x + point.x, self.y + point.y)
- }
-}