[][src]Struct splashsurf_lib::SurfaceReconstruction

pub struct SurfaceReconstruction<I: Index, R: Real> { /* fields omitted */ }

Result data returned when the surface reconstruction was successful

Implementations

impl<I: Index, R: Real> SurfaceReconstruction<I, R>[src]

pub fn mesh(&self) -> &TriMesh3d<R>[src]

Returns a reference to the actual triangulated surface mesh that is the result of the reconstruction

pub fn density_map(&self) -> Option<&DensityMap<I, R>>[src]

Returns a reference to the sparse density map (discretized on the vertices of the background grid) that is used as input for marching cubes

pub fn grid(&self) -> &UniformGrid<I, R>[src]

Returns a reference to the virtual background grid that was used as a basis for discretization of the density map for marching cubes, can be used to convert the density map to a hex mesh (using sparse_density_map_to_hex_mesh)

Trait Implementations

impl<I: Clone + Index, R: Clone + Real> Clone for SurfaceReconstruction<I, R>[src]

impl<I: Debug + Index, R: Debug + Real> Debug for SurfaceReconstruction<I, R>[src]

impl<I: Index, R: Real> Default for SurfaceReconstruction<I, R>[src]

pub fn default() -> Self[src]

Returns an empty SurfaceReconstruction to pass into the inplace surface reconstruction

impl<I: Index, R: Real> From<SurfaceReconstruction<I, R>> for TriMesh3d<R>[src]

Auto Trait Implementations

impl<I, R> !RefUnwindSafe for SurfaceReconstruction<I, R>[src]

impl<I, R> Send for SurfaceReconstruction<I, R> where
    R: Scalar
[src]

impl<I, R> Sync for SurfaceReconstruction<I, R> where
    R: Scalar
[src]

impl<I, R> Unpin for SurfaceReconstruction<I, R> where
    I: Unpin,
    R: Scalar + Unpin
[src]

impl<I, R> UnwindSafe for SurfaceReconstruction<I, R> where
    I: UnwindSafe,
    R: Scalar + UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,