Trait graphics::Rectangled[][src]

pub trait Rectangled: Sized {
    fn margin(self, m: Scalar) -> Self;
fn rel(self, x: Scalar, y: Scalar) -> Self; fn expand(self, m: Scalar) -> Self { ... } }
[]

Should be implemented by contexts that have rectangle information.

Required methods

fn margin(self, m: Scalar) -> Self[src][]

Shrinks the current rectangle equally by all sides.

fn rel(self, x: Scalar, y: Scalar) -> Self[src][]

Moves to a relative rectangle using the current rectangle as tile.

Provided methods

fn expand(self, m: Scalar) -> Self[src][]

Expands the current rectangle equally by all sides.

Implementors

impl Rectangled for Rectangle[src][+]