[][src]Struct doryen_extra::Rectangle

pub struct Rectangle {
    pub position: Position,
    pub size: USize,
}

Represents a rectangle, using a position and size.

Fields

position: Position

The location of the rectangle's upper-left corner

size: USize

The width and height of the rectangle

Implementations

impl Rectangle[src]

pub fn new(position: Position, size: USize) -> Self[src]

Returns a new rectangle with the given position and size

pub fn new_from_raw(x: i32, y: i32, width: u32, height: u32) -> Self[src]

Returns a new rectangle with the given raw position and size values

pub fn contains_position(&self, position: Position) -> bool[src]

Returns whether a given position is within the rectangle or not

pub fn contains_fposition(&self, position: FPosition) -> bool[src]

Returns whether a given position is within the rectangle or not

Trait Implementations

impl Clone for Rectangle[src]

impl Copy for Rectangle[src]

impl Debug for Rectangle[src]

impl Default for Rectangle[src]

impl Eq for Rectangle[src]

impl PartialEq<Rectangle> for Rectangle[src]

impl StructuralEq for Rectangle[src]

impl StructuralPartialEq for Rectangle[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.