[go: up one dir, main page]

Type Alias euclid::rect::Rect

source ·
pub type Rect<T> = TypedRect<T, UnknownUnit>;
Expand description

The default rectangle type with no unit.

Aliased Type§

struct Rect<T> {
    pub origin: TypedPoint2D<T, UnknownUnit>,
    pub size: TypedSize2D<T, UnknownUnit>,
}

Fields§

§origin: TypedPoint2D<T, UnknownUnit>§size: TypedSize2D<T, UnknownUnit>