Package apple.gameplaykit.enums
Class GKRTreeSplitStrategy
- java.lang.Object
-
- apple.gameplaykit.enums.GKRTreeSplitStrategy
-
public final class GKRTreeSplitStrategy extends java.lang.ObjectUsed to adjust the way in which RTree nodes are split when they grow too large. [@enum] GKRTreeSplitStrategyHalve Specifies that nodes should be split in half based on insert order. [@enum] GKRTreeSplitStrategyLinear Specifies that nodes should be split along the best dividing axis. [@enum] GKRTreeSplitStrategyQuadratic Specifies that nodes should be split into groups with the least area. [@enum] GKRTreeSplitStrategyReduceOverlap Specifies that nodes should be split as to reduce overlap.
-
-
Field Summary
Fields Modifier and Type Field Description static longHalvestatic longLinearstatic longQuadraticstatic longReduceOverlap
-
-
-
Field Detail
-
Halve
public static final long Halve
- See Also:
- Constant Field Values
-
Linear
public static final long Linear
- See Also:
- Constant Field Values
-
Quadratic
public static final long Quadratic
- See Also:
- Constant Field Values
-
ReduceOverlap
public static final long ReduceOverlap
- See Also:
- Constant Field Values
-
-