[][src]Struct density_mesh_core::mesh::settings::GenerateDensityMeshSettings

pub struct GenerateDensityMeshSettings {
    pub points_separation: PointsSeparation,
    pub visibility_threshold: Scalar,
    pub steepness_threshold: Scalar,
    pub max_iterations: usize,
    pub extrude_size: Option<Scalar>,
    pub is_chunk: bool,
    pub keep_invisible_triangles: bool,
}

Settings of density mesh generation.

Fields

points_separation: PointsSeparation

Minimal points separation.

visibility_threshold: Scalar

Minimal visibility treshold.

steepness_threshold: Scalar

Minimal steepness treshold.

max_iterations: usize

Limit of iterations when cannot find next available point.

extrude_size: Option<Scalar>

Optional extrude size.

is_chunk: boolkeep_invisible_triangles: bool

Trait Implementations

impl Clone for GenerateDensityMeshSettings[src]

impl Debug for GenerateDensityMeshSettings[src]

impl Default for GenerateDensityMeshSettings[src]

impl<'de> Deserialize<'de> for GenerateDensityMeshSettings[src]

impl PartialEq<GenerateDensityMeshSettings> for GenerateDensityMeshSettings[src]

impl Serialize for GenerateDensityMeshSettings[src]

impl StructuralPartialEq for GenerateDensityMeshSettings[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.