Struct three::Orthographic [] [src]

pub struct Orthographic {
    pub center: Point2<f32>,
    pub extent_y: f32,
    pub near: f32,
    pub far: f32,
}

Orthographic projection parameters. See Orthographic projection.

Fields

Vertical extent from the center point. The height is double the extent. The width is derived from the height based on the current aspect ratio.

Trait Implementations

impl Clone for Orthographic
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Orthographic
[src]

Formats the value using the given formatter.

impl PartialEq for Orthographic
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.