pub struct DrawTextureParams {
    pub dest_size: Option<Vec2>,
    pub source: Option<Rect>,
    pub rotation: f32,
    pub flip_x: bool,
    pub flip_y: bool,
    pub pivot: Option<Vec2>,
}

Fields

dest_size: Option<Vec2>source: Option<Rect>

Part of texture to draw. If None - draw the whole texture. Good use example: drawing an image from texture atlas. Is None by default

rotation: f32

Rotation in radians

flip_x: bool

Mirror on the X axis

flip_y: bool

Mirror on the Y axis

pivot: Option<Vec2>

Rotate around this point. When None, rotate around the texture’s center. When Some, the coordinates are in screen-space. E.g. pivot (0,0) rotates around the top left corner of the screen, not of the texture.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.