Uses of Class
com.brackeen.javagamebook.math3D.Polygon3D

Packages that use Polygon3D
com.brackeen.javagamebook.bsp2D   
com.brackeen.javagamebook.graphics3D   
com.brackeen.javagamebook.math3D   
 

Uses of Polygon3D in com.brackeen.javagamebook.bsp2D
 

Subclasses of Polygon3D in com.brackeen.javagamebook.bsp2D
 class BSPPolygon
          A BSPPolygon is a TexturedPolygon3D with a type (TYPE_FLOOR, TYPE_WALL, or TYPE_PASSABLE_WALL) an ambient light intensity value, and a BSPLine representation if the type is a TYPE_WALL or TYPE_PASSABLE_WALL.
 

Uses of Polygon3D in com.brackeen.javagamebook.graphics3D
 

Methods in com.brackeen.javagamebook.graphics3D with parameters of type Polygon3D
 boolean SortedScanConverter.convert(Polygon3D polygon)
          Scan-converts a polygon, and if sortedMode is on, adds and clips it to a list of what's in the view window.
 boolean ScanConverter.convert(Polygon3D polygon)
          Scan-converts a projected polygon.
 boolean PolygonRenderer.draw(java.awt.Graphics2D g, Polygon3D poly)
          Transforms and draws a polygon.
 

Uses of Polygon3D in com.brackeen.javagamebook.math3D
 

Subclasses of Polygon3D in com.brackeen.javagamebook.math3D
 class SolidPolygon3D
          The SolidPolygon3D class is a Polygon with a color.
 class TexturedPolygon3D
          The TexturedPolygon3D class is a Polygon with a texture.
 

Methods in com.brackeen.javagamebook.math3D that return Polygon3D
 Polygon3D PolygonGroup.nextPolygon()
          Gets the next polygon in the current iteration.
 

Methods in com.brackeen.javagamebook.math3D with parameters of type Polygon3D
 void TexturedPolygon3D.setTo(Polygon3D poly)
           
 void SolidPolygon3D.setTo(Polygon3D polygon)
           
 void PolygonGroup.addPolygon(Polygon3D o)
          Adds a polygon to this group.
 void PolygonGroup.nextPolygonTransformed(Polygon3D cache)
          Gets the next polygon in the current iteration, applying the MovingTransform3Ds to it, and storing it in 'cache'.
 void Polygon3D.setTo(Polygon3D polygon)
          Sets this polygon to the same vertices as the specfied polygon.