Struct zaplib::Rect

[]
pub struct Rect {
    pub pos: Vec2,
    pub size: Vec2,
}
Expand description

Represents an (axis-aligned) rectangle. Axis-aligned means that you can’t rotate it.

Fields

pos: Vec2size: Vec2

Implementations

This returns the Rect for if you’d add padding all around the given Rect.

This means that the pos will move according to the left/top padding, and the size will be adjusted based on the sum of the vertical/horizontal paddings.

If you just want to adjust the size while keeping pos the same, you can simply add the desired dimensions to size.

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.