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

Packages that use BSPTree.Leaf
com.brackeen.javagamebook.bsp2D   
com.brackeen.javagamebook.path   
 

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

Methods in com.brackeen.javagamebook.bsp2D that return BSPTree.Leaf
 BSPTree.Leaf BSPTree.getLeaf(float x, float z)
          Gets the leaf the x,z coordinates are in.
 BSPTree.Leaf BSPTree.getFrontLeaf(BSPLine partition)
          Gets the Leaf in front of the specified partition.
 BSPTree.Leaf BSPTree.getBackLeaf(BSPLine partition)
          Gets the Leaf in back of the specified partition.
 

Constructors in com.brackeen.javagamebook.bsp2D with parameters of type BSPTree.Leaf
Portal(BSPLine divider, BSPTree.Leaf front, BSPTree.Leaf back)
          Create a new Portal with the specified divider and front/ back leaves.
 

Uses of BSPTree.Leaf in com.brackeen.javagamebook.path
 

Constructors in com.brackeen.javagamebook.path with parameters of type BSPTree.Leaf
AStarSearchWithBSP.LeafNode(BSPTree.Leaf leaf, Vector3D location)