Trait graphics::SourceRectangled [−][src]
pub trait SourceRectangled { fn src_rect(self, x: Scalar, y: Scalar, w: Scalar, h: Scalar) -> Self; fn src_rel(self, x: Scalar, y: Scalar) -> Self; fn src_flip_h(self) -> Self; fn src_flip_v(self) -> Self; fn src_flip_hv(self) -> Self; }
Should be implemented by contexts that have source rectangle information.
Required methods
fn src_rect(self, x: Scalar, y: Scalar, w: Scalar, h: Scalar) -> Self
[src]
Adds a source rectangle.
fn src_rel(self, x: Scalar, y: Scalar) -> Self
[src]
Moves to a relative source rectangle using the current source rectangle as tile.
fn src_flip_h(self) -> Self
[src]
Flips the source rectangle horizontally.
fn src_flip_v(self) -> Self
[src]
Flips the source rectangle vertically.
fn src_flip_hv(self) -> Self
[src]
Flips the source rectangle horizontally and vertically.