pub struct GaussianCov3dSingleConfig;Expand description
The single precision covariance 3D configuration of Gaussian.
Calling GaussianCov3dConfig::to_rot_scale will panic on this config.
Trait Implementations§
Source§impl GaussianCov3dConfig for GaussianCov3dSingleConfig
impl GaussianCov3dConfig for GaussianCov3dSingleConfig
Source§fn from_rot_scale(rot: Quat, scale: Vec3) -> Self::Field
fn from_rot_scale(rot: Quat, scale: Vec3) -> Self::Field
Create from
Gaussian::rot and Gaussian::scale.Source§fn to_rot_scale(_field: &Self::Field) -> (Quat, Vec3)
fn to_rot_scale(_field: &Self::Field) -> (Quat, Vec3)
Convert the field to
Gaussian::rot and Gaussian::scale.Auto Trait Implementations§
impl Freeze for GaussianCov3dSingleConfig
impl RefUnwindSafe for GaussianCov3dSingleConfig
impl Send for GaussianCov3dSingleConfig
impl Sync for GaussianCov3dSingleConfig
impl Unpin for GaussianCov3dSingleConfig
impl UnwindSafe for GaussianCov3dSingleConfig
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> 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