[]Struct piston_window::Viewport

pub struct Viewport {
    pub rect: [i32; 4],
    pub draw_size: [u32; 2],
    pub window_size: [f64; 2],
}

Stores viewport information.

Fields

rect: [i32; 4]

Viewport in pixels. [x, y, width height] where (x, y) is lower left corner.

draw_size: [u32; 2]

The size of frame buffer in pixels.

window_size: [f64; 2]

The size of window in points.

Methods

impl Viewport

pub fn abs_transform<T>(&self) -> [[T; 3]; 2] where
    T: Float, 

Computes absolute transform for 2D graphics, which uses a row major 2x3 matrix. The origin is in the upper left corner of the viewport rectangle. The x axis points to the right, and the y axis points down. The units are in points (window coordinates).

It is assumed that the underlying coordinate system is normalized with the origin in the center, such that (-1.0, 1.0) in the underlying coordinate system corresponds to the upper left corner of the viewport.

Trait Implementations

impl Copy for Viewport

impl Debug for Viewport

impl Clone for Viewport

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Viewport> for Viewport

Auto Trait Implementations

impl Send for Viewport

impl Sync for Viewport

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> Erased for T