Table of Contents

Enum VoxelNeighborScope

Namespace
GridForge.Spatial
Assembly
GridForge.dll

Selects which grid groups are included by voxel contact-neighbor queries.

[Flags]
public enum VoxelNeighborScope : byte

Fields

All = SourceGrid | SameTopologyGrids | MixedTopologyGrids

Include touching voxels from the source grid, same-topology grids, and mixed-topology grids.

MixedTopologyGrids = 4

Include touching voxels from grids with a different topology kind.

None = 0

No neighbor groups are included.

SameTopologyGrids = 2

Include touching voxels from other grids with the same topology kind.

SourceGrid = 1

Include touching voxels from only the source voxel's owning grid.