pub struct ViewPoint {
pub tx: f64,
pub ty: f64,
pub tz: f64,
pub qw: f64,
pub qx: f64,
pub qy: f64,
pub qz: f64,
}Expand description
Represents VIEWPOINT field in meta data.
Fields§
§tx: f64§ty: f64§tz: f64§qw: f64§qx: f64§qy: f64§qz: f64Trait Implementations§
impl StructuralPartialEq for ViewPoint
Auto Trait Implementations§
impl Freeze for ViewPoint
impl RefUnwindSafe for ViewPoint
impl Send for ViewPoint
impl Sync for ViewPoint
impl Unpin for ViewPoint
impl UnwindSafe for ViewPoint
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more