//! Transformations for graphics objects
usecoord::Coord;/// Transform operations
pubtraitTransform{/// Move the origin of an object by a given number of (x, y) pixels, returning a new object
fntranslate(&self, by: Coord)->Self;/// Move the origin of an object by a given number of (x, y) pixels, mutating the object
/// in place
fntranslate_mut(&mutself, by: Coord)->&mutSelf;}