Remove redundant .into()

This commit is contained in:
Hanno Braun 2025-04-24 11:15:26 +02:00
parent 0451a07b06
commit cc626c52bc

View File

@ -61,7 +61,7 @@ impl SweptCurve {
pub fn translate(&self, offset: impl Into<Vector<3>>) -> Self {
Self {
curve: self.curve.translate(offset.into()),
curve: self.curve.translate(offset),
path: self.path,
}
}