pub struct Fov {
pub left: f32,
pub right: f32,
pub up: f32,
pub down: f32,
}Expand description
Asymmetric field-of-view angles (in radians). All angles are positive: left/down are measured from center toward left/down.
Fields§
§left: f32§right: f32§up: f32§down: f32Trait Implementations§
Auto Trait Implementations§
impl Freeze for Fov
impl RefUnwindSafe for Fov
impl Send for Fov
impl Sync for Fov
impl Unpin for Fov
impl UnsafeUnpin for Fov
impl UnwindSafe for Fov
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