pub struct VRFieldOfView {
pub up_degrees: f64,
pub right_degrees: f64,
pub down_degrees: f64,
pub left_degrees: f64,
}
Expand description
The VRFieldOfView interface represents a field of view, as given by 4 degrees describing the view from a center point.
Fields§
§up_degrees: f64
§right_degrees: f64
§down_degrees: f64
§left_degrees: f64
Trait Implementations§
Source§impl Clone for VRFieldOfView
impl Clone for VRFieldOfView
Source§fn clone(&self) -> VRFieldOfView
fn clone(&self) -> VRFieldOfView
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VRFieldOfView
impl Debug for VRFieldOfView
Source§impl Default for VRFieldOfView
impl Default for VRFieldOfView
Source§fn default() -> VRFieldOfView
fn default() -> VRFieldOfView
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VRFieldOfView
impl RefUnwindSafe for VRFieldOfView
impl Send for VRFieldOfView
impl Sync for VRFieldOfView
impl Unpin for VRFieldOfView
impl UnwindSafe for VRFieldOfView
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