Uses of Class
com.brackeen.javagamebook.bsp2D.BSPLine

Packages that use BSPLine
com.brackeen.javagamebook.bsp2D   
 

Uses of BSPLine in com.brackeen.javagamebook.bsp2D
 

Fields in com.brackeen.javagamebook.bsp2D declared as BSPLine
 BSPLine BSPTree.Node.partition
           
 

Methods in com.brackeen.javagamebook.bsp2D that return BSPLine
 BSPLine BSPPolygon.getLine()
          Gets the line representing the BSPPolygon.
 

Methods in com.brackeen.javagamebook.bsp2D with parameters of type BSPLine
 BSPTree.Node BSPTree.getCollinearNode(BSPLine partition)
          Gets the Node that is collinear with the specified partition, or null if no such node exists.
 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.
 boolean BSPLine.equals(BSPLine line)
          Returns true if the endpoints of this line match the endpoints of the specified line.
 boolean BSPLine.equalsIgnoreOrder(BSPLine line)
          Returns true if the endpoints of this line match the endpoints of the specified line, ignoring endpoint order (if the first point of this line is equal to the second point of the specified line, and vice versa, returns true).
 

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