pub struct Splat {
pub count: usize,
pub antialias: bool,
pub sh_degree: usize,
pub position: Vec<f32>,
pub rotation: Vec<f32>,
pub scale: Vec<f32>,
pub sh_0: Vec<f32>,
pub sh_n: Option<Vec<f32>>,
}Fields§
§count: usize§antialias: bool§sh_degree: usize§position: Vec<f32>§rotation: Vec<f32>§scale: Vec<f32>§sh_0: Vec<f32>§sh_n: Option<Vec<f32>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Splat
impl RefUnwindSafe for Splat
impl Send for Splat
impl Sync for Splat
impl Unpin for Splat
impl UnsafeUnpin for Splat
impl UnwindSafe for Splat
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