Struct emath::align::Align2

source ·
pub struct Align2(pub [Align; 2]);
Expand description

Two-dimension alignment, e.g. Align2::LEFT_TOP.

Tuple Fields§

§0: [Align; 2]

Implementations§

Returns an alignment by the X (horizontal) axis

Returns an alignment by the Y (vertical) axis

-1, 0, or +1 for each axis

Used e.g. to anchor a piece of text to a part of the rectangle. Give a position within the rect, specified by the aligns

e.g. center a size within a given frame

Returns the point on the rect’s frame or in the center of a rect according to the alignments of this object.

(*)-----------+------(*)------+-----------(*)--> X
 |            |               |            |
 |  Min, Min  |  Center, Min  |  Max, Min  |
 |            |               |            |
 +------------+---------------+------------+
 |            |               |            |
(*)Min, Center|Center(*)Center|Max, Center(*)
 |            |               |            |
 +------------+---------------+------------+
 |            |               |            |
 |  Min, Max  | Center, Max   |  Max, Max  |
 |            |               |            |
(*)-----------+------(*)------+-----------(*)
 |
 Y

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
Deserialize this value from the given Serde deserializer. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
The returned type after indexing.
Performs the indexing (container[index]) operation. Read more
Performs the mutable indexing (container[index]) operation. 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
Serialize this value into the given Serde serializer. 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.