diff --git a/src/traits/geometry.rs b/src/traits/geometry.rs index fc06edf9..8a229a18 100644 --- a/src/traits/geometry.rs +++ b/src/traits/geometry.rs @@ -29,8 +29,8 @@ pub trait Translation { fn set_translation(&mut self, V); } -/// Trait of objects able to rotate other objects. This is typically implemented by matrices which -/// rotate vectors. +/// Trait of objects able to translate other objects. This is typically +/// implemented by vectors to translate points. pub trait Translate { /// Apply a translation to an object. fn translate(&self, &V) -> V;