diff --git a/crates/fj-math/src/vector.rs b/crates/fj-math/src/vector.rs index 9dd6d57ce..d30bd745f 100644 --- a/crates/fj-math/src/vector.rs +++ b/crates/fj-math/src/vector.rs @@ -323,6 +323,15 @@ where } } +impl ops::MulAssign for Vector +where + S: Into, +{ + fn mul_assign(&mut self, rhs: S) { + *self = *self * rhs; + } +} + impl ops::Div for Vector where S: Into,