pub struct OrbitZoomCamera<T = f32> {
    pub target: Vector3<T>,
    pub rotation: Quaternion<T>,
    pub pitch: T,
    pub yaw: T,
    pub distance: T,
    pub settings: OrbitZoomCameraSettings<T>,
    /* private fields */
}
Expand description

A 3dsMax / Blender-style camera that orbits around a target point

Fields§

§target: Vector3<T>

origin of camera rotation

§rotation: Quaternion<T>

Rotation of camera

§pitch: T

Pitch up/down from target

§yaw: T

Yaw left/right from target

§distance: T

camera distance from target

§settings: OrbitZoomCameraSettings<T>

Settings for the camera

Implementations§

source§

impl<T: Float> OrbitZoomCamera<T>

source

pub fn new( target: [T; 3], settings: OrbitZoomCameraSettings<T> ) -> OrbitZoomCamera<T>

Create a new OrbitZoomCamera targeting the given coordinates

source

pub fn camera(&self, _dt: f64) -> Camera<T>

Return a Camera for the current OrbitZoomCamera configuration

source

pub fn event<E: GenericEvent>(&mut self, e: &E)

Respond to scroll and key press/release events

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for OrbitZoomCamera<T>where T: RefUnwindSafe,

§

impl<T> Send for OrbitZoomCamera<T>where T: Send,

§

impl<T> Sync for OrbitZoomCamera<T>where T: Sync,

§

impl<T> Unpin for OrbitZoomCamera<T>where T: Unpin,

§

impl<T> UnwindSafe for OrbitZoomCamera<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.