Struct gltf_json::camera::Orthographic[][src]

pub struct Orthographic {
    pub xmag: f32,
    pub ymag: f32,
    pub zfar: f32,
    pub znear: f32,
    pub extensions: Orthographic,
    pub extras: Extras,
}

Values for an orthographic camera.

Fields

The horizontal magnification of the view.

The vertical magnification of the view.

The distance to the far clipping plane.

The distance to the near clipping plane.

Extension specific data.

Optional application specific data.

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. Read more

impl Validate for Orthographic
[src]

Validates the data against the glTF 2.0 specification. Read more

Validates only the invariants required for the library to function safely.

Auto Trait Implementations