[][src]Enum amethyst_rendy::camera::Projection

pub enum Projection {
    Orthographic(Orthographic),
    Perspective(Perspective),
}

The projection mode of a Camera.

TODO: Remove and integrate with Camera.

Variants

Orthographic(Orthographic)

An orthographic projection.

Perspective(Perspective)

A realistic perspective projection.

Methods

impl Projection[src]

pub fn orthographic(
    left: f32,
    right: f32,
    bottom: f32,
    top: f32,
    z_near: f32,
    z_far: f32
) -> Projection
[src]

Creates an orthographic projection with the given left, right, bottom, and top plane distances. The projection matrix is right-handed and has a depth range of 0 to 1

pub fn perspective(aspect: f32, fov: f32, z_near: f32, z_far: f32) -> Projection[src]

Creates a perspective projection with the given aspect ratio and field-of-view. fov is specified in radians. The projection matrix is right-handed and has a depth range of 0 to 1

pub fn as_orthographic(&self) -> Option<&Orthographic>[src]

Returns a reference to this Projection as [Orthographic] if it is in fact an Orthographic projection. Otherwise, None is returned.

pub fn as_orthographic_mut(&mut self) -> Option<&mut Orthographic>[src]

Returns a mutable reference to this Projection as [Orthographic] if it is in fact an Orthographic projection. Otherwise, None is returned.

pub fn as_perspective(&self) -> Option<&Perspective>[src]

Returns a reference to this Projection as [Perspective] if it is in fact a Perspective projection. Otherwise, None is returned.

pub fn as_perspective_mut(&mut self) -> Option<&mut Perspective>[src]

Returns a mutable reference to this Projection as [Perspective] if it is in fact a Perspective projection. Otherwise, None is returned.

pub fn as_matrix(&self) -> &Matrix4<f32>[src]

Returns a reference to the inner matrix represpentation of this projection.

pub fn as_matrix_mut(&mut self) -> &mut Matrix4<f32>[src]

Returns a mutable reference to the inner matrix represpentation of this projection.

pub fn screen_to_world(
    &self,
    screen_position: Point2<f32>,
    screen_diagonal: Vector2<f32>,
    camera_transform: &Transform
) -> Point3<f32>
[src]

Transforms position from screen space to camera space

pub fn world_to_screen(
    &self,
    world_position: Point3<f32>,
    screen_diagonal: Vector2<f32>,
    camera_transform: &Transform
) -> Point2<f32>
[src]

Translate from world coordinates to screen coordinates

Trait Implementations

impl Clone for Projection[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Projection> for Projection[src]

impl From<Orthographic> for Projection[src]

impl From<Perspective> for Projection[src]

impl From<Projection> for Camera[src]

impl Debug for Projection[src]

impl Serialize for Projection[src]

impl<'de> Deserialize<'de> for Projection[src]

Auto Trait Implementations

impl Unpin for Projection

impl Sync for Projection

impl Send for Projection

impl UnwindSafe for Projection

impl RefUnwindSafe for Projection

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

fn adapt_into(self) -> D[src]

Convert the source color to the destination color using the bradford method by default Read more

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> SetParameter for T[src]

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

Sets value as a parameter of self.

impl<T> Supports<T> for T[src]

impl<T> Erased for T[src]

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

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 
[src]

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