pub struct Rect {
    pub x: f32,
    pub y: f32,
    pub w: f32,
    pub h: f32,
}
Expand description

A 2D rectangle, defined by its top-left corner, width and height.

Fields

x: f32y: f32w: f32h: f32

Implementations

Creates a new rectangle from its top-left corner, width and height.

Arguments:
  • x - x-coordinate of the top-left corner.
  • y - y-coordinate of the top-left corner.
  • w - width of the Rect, going to the right.
  • h - height of the Rect, going down.

Returns the top-left corner of the Rect.

Returns the size (width and height) of the Rect.

Returns the center position of the Rect.

Returns the left edge of the Rect

Returns the right edge of the Rect

Returns the top edge of the Rect

Returns the bottom edge of the Rect

Moves the Rect’s origin to (x, y)

Scales the Rect by a factor of (sx, sy), growing towards the bottom-left

Checks whether the Rect contains a Point

Checks whether the Rect overlaps another Rect

Returns a new Rect that includes all points of these two Rects.

Returns an intersection rect there is any intersection

Translate rect origin be offset vector

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 !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. 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.