[][src]Struct parry2d::transformation::vhacd::VHACDParameters

pub struct VHACDParameters {
    pub concavity: Real,
    pub alpha: Real,
    pub beta: Real,
    pub resolution: u32,
    pub plane_downsampling: u32,
    pub convex_hull_downsampling: u32,
    pub fill_mode: FillMode,
    pub convex_hull_approximation: bool,
    pub max_convex_hulls: u32,
}

Parameters controlling the VHACD convex decomposition.

See https://github.com/Unity-Technologies/VHACD#parameters for details.

Fields

concavity: Real

Maximum concavity.

Default: 0.1 (in 2D), 0.01 (in 3D). Valid range [0.0, 1.0].

alpha: Real

Controls the bias toward clipping along symmetry planes.

Default: 0.05. Valid Range: [0.0, 1.0].

beta: Real

Controls the bias toward clipping along revolution planes.

Default: 0.05. Valid Range: [0.0, 1.0].

resolution: u32

Resolution used during the voxelization stage.

Default: 256 (in 2D), 64 (in 3D).

plane_downsampling: u32

Controls the granularity of the search for the best clipping plane during the decomposition.

Default: 4

convex_hull_downsampling: u32

Controls the precision of the convex-hull generation process during the clipping plane selection stage.

Default: 4

fill_mode: FillMode

Controls the way the input mesh or polyline is being voxelized.

Default: FillMode::FloodFill { detect_cavities: false, detect_self_intersections: false }

convex_hull_approximation: bool

Controls whether the convex-hull should be approximated during the decomposition stage. Setting this to true increases performances with a slight degradation of the decomposition quality.

Default: true

max_convex_hulls: u32

Controls the max number of convex-hull generated by the convex decomposition.

Default: 1024

Trait Implementations

impl Default for VHACDParameters[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> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

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

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

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

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>,