Trait embedded_graphics::transform::Transform
source · pub trait Transform {
// Required methods
fn translate(&self, by: Point) -> Self;
fn translate_mut(&mut self, by: Point) -> &mut Self;
}
Expand description
Transform operations
Required Methods§
sourcefn translate(&self, by: Point) -> Self
fn translate(&self, by: Point) -> Self
Move the origin of an object by a given number of (x, y) pixels, returning a new object
sourcefn translate_mut(&mut self, by: Point) -> &mut Self
fn translate_mut(&mut self, by: Point) -> &mut Self
Move the origin of an object by a given number of (x, y) pixels, mutating the object in place