diff --git a/agb/src/display/affine.rs b/agb/src/display/affine.rs index 53d128d7..4145d0a9 100644 --- a/agb/src/display/affine.rs +++ b/agb/src/display/affine.rs @@ -269,25 +269,25 @@ impl Mul for AffineMatrix { } } -impl Mul> for AffineMatrix { - type Output = Self; - fn mul(self, rhs: Num) -> Self::Output { - self * AffineMatrix { - a: rhs, - b: 0.into(), - c: 0.into(), - d: rhs, - x: 0.into(), - y: 0.into(), - } - } -} +// impl Mul> for AffineMatrix { +// type Output = Self; +// fn mul(self, rhs: Num) -> Self::Output { +// self * AffineMatrix { +// a: rhs, +// b: 0.into(), +// c: 0.into(), +// d: rhs, +// x: 0.into(), +// y: 0.into(), +// } +// } +// } -impl MulAssign> for AffineMatrix { - fn mul_assign(&mut self, rhs: Num) { - *self = *self * rhs; - } -} +// impl MulAssign> for AffineMatrix { +// fn mul_assign(&mut self, rhs: Num) { +// *self = *self * rhs; +// } +// } impl MulAssign for AffineMatrix { fn mul_assign(&mut self, rhs: Self) {