diff --git a/src/geometry.rs b/src/geometry.rs index d1e7c5a..8bab225 100644 --- a/src/geometry.rs +++ b/src/geometry.rs @@ -67,6 +67,7 @@ impl Add for Point { } } +// These can be derived too, but implement them for demonstration. impl PartialEq for Point { fn eq(&self, other: &Self) -> bool { self.x == other.x && self.y == other.y