//! Translations.
usecrate::{P2,V2};/// A trait for spatially translatable types.
pubtraitTranslate{/// Translate `self` by the given translation vector.
fntranslate(self, translation: V2)->Self;}implTranslate forP2{fntranslate(self, translation: V2)->Self{self+ translation
}}