[][src]Struct carambolage::grphx::camera::Camera

pub struct Camera {
    position: Vector3<f32>,
    focus: Vector3<f32>,
    up: Vector3<f32>,
    height: f32,
    height_min: f32,
    height_max: f32,
    speed: f32,
    focus_goal: Vector3<f32>,
    height_goal: f32,
}

Camera to calculate the view matrix and follow ingame objects.

Fields

Methods

impl Camera
[src]

Create a new Camera with fixed values.

Update the cameras position relative to the delta time dt.

Smooth transition to the focus goal postion.

Set the focus goal and the camera instantaneously.

Smooth transition to the camera height goal.

Set the camera height instantaneously.

Get the view matrix, calculated from camera values.

Trait Implementations

impl Debug for Camera
[src]

Formats the value using the given formatter. Read more

impl Copy for Camera
[src]

impl Clone for Camera
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Camera

impl Sync for Camera

Blanket Implementations

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> SetParameter for T

Sets value as a parameter of self.

impl<T> Same for T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

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