diff --git a/crates/fj-math/src/point.rs b/crates/fj-math/src/point.rs index d52997974..83b06f63a 100644 --- a/crates/fj-math/src/point.rs +++ b/crates/fj-math/src/point.rs @@ -164,6 +164,15 @@ where } } +impl ops::AddAssign for Point +where + V: Into>, +{ + fn add_assign(&mut self, rhs: V) { + *self = *self + rhs; + } +} + impl ops::Sub for Point where V: Into>,