completely remove scalar mul

This commit is contained in:
Corwin 2022-10-09 11:31:54 +01:00
parent 0be595b47e
commit dcdf678126

View file

@ -269,26 +269,6 @@ impl Mul for AffineMatrix {
} }
} }
// impl Mul<Num<i32, 8>> for AffineMatrix {
// type Output = Self;
// fn mul(self, rhs: Num<i32, 8>) -> Self::Output {
// self * AffineMatrix {
// a: rhs,
// b: 0.into(),
// c: 0.into(),
// d: rhs,
// x: 0.into(),
// y: 0.into(),
// }
// }
// }
// impl MulAssign<Num<i32, 8>> for AffineMatrix {
// fn mul_assign(&mut self, rhs: Num<i32, 8>) {
// *self = *self * rhs;
// }
// }
impl MulAssign for AffineMatrix { impl MulAssign for AffineMatrix {
fn mul_assign(&mut self, rhs: Self) { fn mul_assign(&mut self, rhs: Self) {
*self = *self * rhs; *self = *self * rhs;