Struct glium::Rect
[−]
[src]
pub struct Rect { pub left: u32, pub bottom: u32, pub width: u32, pub height: u32, }
Area of a surface in pixels.
In the OpenGL ecosystem, the (0,0) coordinate is at the bottom-left hand corner of the images.
Fields
left: u32
Number of pixels between the left border of the surface and the left border of the rectangle.
bottom: u32
Number of pixels between the bottom border of the surface and the bottom border of the rectangle.
width: u32
Width of the area in pixels.
height: u32
Height of the area in pixels.
Trait Implementations
impl Eq for Rect
[src]
impl PartialEq for Rect
[src]
fn eq(&self, __arg_0: &Rect) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Rect) -> bool
This method tests for !=
.
impl Default for Rect
[src]
impl Copy for Rect
[src]
impl Clone for Rect
[src]
fn clone(&self) -> Rect
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more