C# Class Pathfinding.PointKDTree.Node

显示文件 Open project: FellowshipOfTheGame/anathema Class Usage Examples

Public Properties

Property Type Description
count ushort
data Pathfinding.GraphNode[]
split int
splitAxis byte

Property Details

count public_oe property

Number of non-null entries in data
public ushort count
return ushort

data public_oe property

Nodes in this leaf node (null if not a leaf node)
public GraphNode[],Pathfinding data
return Pathfinding.GraphNode[]

split public_oe property

Split point along the splitAxis if not a leaf node
public int split
return int

splitAxis public_oe property

Axis to split along if not a leaf node (x=0, y=1, z=2)
public byte splitAxis
return byte