[−][src]Enum amethyst_rendy::camera::Projection
The projection mode of a Camera
.
TODO: Remove and integrate with Camera
.
Variants
Orthographic(Orthographic)
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][−]
left: f32,
right: f32,
bottom: f32,
top: f32,
z_near: f32,
z_far: f32
) -> Projection
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][−]
&self,
screen_position: Point2<f32>,
screen_diagonal: Vector2<f32>,
camera_transform: &Transform
) -> Point3<f32>
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][−]
&self,
world_position: Point3<f32>,
screen_diagonal: Vector2<f32>,
camera_transform: &Transform
) -> Point2<f32>
Translate from world coordinates to screen coordinates
Trait Implementations
impl Clone for Projection
[src][+]
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][+]
T: Clone,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
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][+]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> SetParameter for T
[src][+]
impl<T> Supports<T> for T
[src]
impl<T> Erased for T
[src]
impl<T> Serialize for T where
T: Serialize + ?Sized,
[src][+]
T: Serialize + ?Sized,
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][+]
SS: SubsetOf<SP>,
impl<T> Resource for T where
T: Any + Send + Sync,
[src]
T: Any + Send + Sync,
impl<T> Any for T where
T: Any,
[src][+]
T: Any,
impl<T> Event for T where
T: Send + Sync + 'static,
[src]
T: Send + Sync + 'static,
impl<T> Clone for T where
T: Clone,
[src][+]
T: Clone,