Uses of Class
com.brackeen.javagamebook.bsp2D.BSPTree.Node

Packages that use BSPTree.Node
com.brackeen.javagamebook.bsp2D   
 

Uses of BSPTree.Node in com.brackeen.javagamebook.bsp2D
 

Subclasses of BSPTree.Node in com.brackeen.javagamebook.bsp2D
static class BSPTree.Leaf
          A Leaf of the tree.
 

Fields in com.brackeen.javagamebook.bsp2D declared as BSPTree.Node
 BSPTree.Node BSPTree.Node.front
           
 BSPTree.Node BSPTree.Node.back
           
 

Methods in com.brackeen.javagamebook.bsp2D that return BSPTree.Node
 BSPTree.Node BSPTree.getRoot()
          Gets the root node of this tree.
 BSPTree.Node BSPTree.getCollinearNode(BSPLine partition)
          Gets the Node that is collinear with the specified partition, or null if no such node exists.
 

Constructors in com.brackeen.javagamebook.bsp2D with parameters of type BSPTree.Node
BSPTree(BSPTree.Node root)
          Creates a new BSPTree with the specified root node.