This commit is contained in:
Hanno Braun 2025-02-24 19:18:15 +01:00
parent 21da909b46
commit 8f48c887f3

View File

@ -4,7 +4,7 @@ pub trait TranslateExt {
fn translate(self, offset: impl Into<Vector<3>>) -> Face;
}
impl TranslateExt for &Face {
impl TranslateExt for Face {
fn translate(self, offset: impl Into<Vector<3>>) -> Face {
let offset = offset.into();