pub struct Gaussian3dRenderOptions {
pub colors_sh_degree_max: u32,
}
Expand description
3DGS rendering options.
Fields§
§colors_sh_degree_max: u32
The maximum degree of color in SH space.
It should be no more than SH_DEGREE_MAX
.
Implementations§
source§impl Gaussian3dRenderOptions
impl Gaussian3dRenderOptions
sourcepub fn with_colors_sh_degree_max(self, colors_sh_degree_max: u32) -> Self
pub fn with_colors_sh_degree_max(self, colors_sh_degree_max: u32) -> Self
The maximum degree of color in SH space.
Trait Implementations§
source§impl Clone for Gaussian3dRenderOptions
impl Clone for Gaussian3dRenderOptions
source§impl Config for Gaussian3dRenderOptions
impl Config for Gaussian3dRenderOptions
source§impl Debug for Gaussian3dRenderOptions
impl Debug for Gaussian3dRenderOptions
source§impl Default for Gaussian3dRenderOptions
impl Default for Gaussian3dRenderOptions
source§impl<'de> Deserialize<'de> for Gaussian3dRenderOptions
impl<'de> Deserialize<'de> for Gaussian3dRenderOptions
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for Gaussian3dRenderOptions
impl Display for Gaussian3dRenderOptions
source§impl PartialEq for Gaussian3dRenderOptions
impl PartialEq for Gaussian3dRenderOptions
source§impl<B: Backend> Record<B> for Gaussian3dRenderOptions
impl<B: Backend> Record<B> for Gaussian3dRenderOptions
source§impl Serialize for Gaussian3dRenderOptions
impl Serialize for Gaussian3dRenderOptions
impl Copy for Gaussian3dRenderOptions
impl StructuralPartialEq for Gaussian3dRenderOptions
Auto Trait Implementations§
impl Freeze for Gaussian3dRenderOptions
impl RefUnwindSafe for Gaussian3dRenderOptions
impl Send for Gaussian3dRenderOptions
impl Sync for Gaussian3dRenderOptions
impl Unpin for Gaussian3dRenderOptions
impl UnwindSafe for Gaussian3dRenderOptions
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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