Interface BSPTree.VanishingCutHandler<S extends Space>
-
- Type Parameters:
S
- Type of the space.
public static interface BSPTree.VanishingCutHandler<S extends Space>
This interface handles the corner cases when an internal node cut sub-hyperplane vanishes.Such cases happens for example when a cut sub-hyperplane is inserted into another tree (during a merge operation), and is split in several parts, some of which becomes smaller than the tolerance. The corresponding node as then no cut sub-hyperplane anymore, but does have children. This interface specifies how to handle this situation. setting
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BSPTree<S>
fixNode(BSPTree<S> node)
Fix a node with both vanished cut and children.
-