pub struct MarchingCubes {
pub resolution: u32,
pub bounds_min: Vec3,
pub bounds_max: Vec3,
pub iso_level: f32,
}Expand description
Marching cubes isosurface extraction.
Fields§
§resolution: u32§bounds_min: Vec3§bounds_max: Vec3§iso_level: f32Implementations§
Auto Trait Implementations§
impl Freeze for MarchingCubes
impl RefUnwindSafe for MarchingCubes
impl Send for MarchingCubes
impl Sync for MarchingCubes
impl Unpin for MarchingCubes
impl UnsafeUnpin for MarchingCubes
impl UnwindSafe for MarchingCubes
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