Type Alias Camera

Source
pub type Camera = Camera3D;

Aliased Type§

#[repr(C)]
pub struct Camera { pub position: Vector3, pub target: Vector3, pub up: Vector3, pub fovy: f32, pub projection: i32, }

Fields§

§position: Vector3§target: Vector3§up: Vector3§fovy: f32§projection: i32

Trait Implementations

Source§

impl Clone for Camera3D

Source§

fn clone(&self) -> Camera3D

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Camera3D

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for Camera3D