Enum gltf::camera::Projection
[−]
[src]
pub enum Projection<'a> {
Orthographic(Orthographic<'a>),
Perspective(Perspective<'a>),
}A camera's projection.
Variants
Orthographic(Orthographic<'a>)Describes an orthographic projection.
Perspective(Perspective<'a>)Describes a perspective projection.
Trait Implementations
impl<'a> Clone for Projection<'a>[src]
fn clone(&self) -> Projection<'a>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more