pub struct ExtractedView {
pub view_proj: Mat4,
pub position: Vec3,
}Expand description
Flat representation of a camera view.
Fields§
§view_proj: Mat4View-projection matrix.
position: Vec3World-space camera position.
Trait Implementations§
Source§impl Clone for ExtractedView
impl Clone for ExtractedView
Source§fn clone(&self) -> ExtractedView
fn clone(&self) -> ExtractedView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ExtractedView
impl RefUnwindSafe for ExtractedView
impl Send for ExtractedView
impl Sync for ExtractedView
impl Unpin for ExtractedView
impl UnsafeUnpin for ExtractedView
impl UnwindSafe for ExtractedView
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more