Table of Contents

Enum VhacdFillMode

Namespace
Stride.Physics
Assembly
Stride.Physics.dll

How V-HACD fills the interior of the voxelized mesh during decomposition.

[DataContract("VhacdFillMode")]
public enum VhacdFillMode
Extension Methods

Fields

FloodFill = 0

Flood-fill from a known-outside cell to mark inside vs outside. Default; meshes with holes can fail.

RaycastFill = 2

Uses raycasting to classify inside vs outside; more robust for meshes with holes.

SurfaceOnly = 1

Only the voxelized surface is kept; produces shell-only hulls with hollow interior.