Uses of Class
com.quinncurtis.chart3djava.Polygon3D

Uses of Polygon3D in com.quinncurtis.chart3djava
 

Methods in com.quinncurtis.chart3djava that return Polygon3D
 Polygon3D ChartSymbol.calcSymbolShape(int nsymbol)
          Returns the GeneralPath object represented by the specified symbol value.
static Polygon3D Polygon3D.convertForStepMode(Polygon3D polygon, int stepmode)
          Convert a polygon to a "stepped" version of the same polygon.
 Polygon3D ChartSymbol.getCircleShape()
          Returns the Polygon3D object represented by the symbol value CIRCLE.
 Polygon3D ChartSymbol.getCrossShape()
          Returns the Polygon3D object represented by the symbol value CROSS.
 Polygon3D ChartSymbol.getDiamondShape()
          Returns the Polygon3D object represented by the symbol value DIAMOND.
 Polygon3D ChartSymbol.getDownTriangleShape()
          Returns the Polygon3D object represented by the symbol value DOWNTRIANGLE.
 Polygon3D PolygonList.getElement(int index)
          Get the value of an individual polygon in the Polygon3D list.
 Polygon3D ChartSymbol.getHBarShape()
          Returns the Polygon3D object represented by the symbol value HBAR.
 Polygon3D ChartSymbol.getLineShape()
          Returns the Polygon3D object represented by the symbol value LINE.
 Polygon3D ChartSymbol.getNoSymbolShape()
          Returns the Polygon3D object represented by the symbol value NOSYMBOL.
 Polygon3D ChartSymbol.getPlusShape()
          Returns the Polygon3D object represented by the symbol value PULSE.
 Polygon3D PolygonList.getPolygon(int index)
          Returns a specific polygon in the array of Polygon3D objects.
 Polygon3D[] PolygonList.getPolygons()
          Returns an array of Polygon3D objects.
 Polygon3D ChartSymbol.getSquareShape()
          Returns the Polygon3D object represented by the symbol value SQUARE.
 Polygon3D ChartSymbol.getStarShape()
          Returns the Polygon3D object represented by the symbol value STAR.
 Polygon3D ChartSymbol.getSymbolShape()
          Returns the GeneralPath of the current symbol.
 Polygon3D Polygon3D.getTransformPolygon()
          Transforms the polygon to screen coordinates and return the result as a new Polygon3D object.
 Polygon3D ChartSymbol.getUpTriangleShape()
          Returns the Polygon3D object represented by the symbol value UPTRIANGLE.
 Polygon3D ChartSymbol.getVBarShape()
          Returns the Polygon3D object represented by the symbol value VBAR.
 Polygon3D PhysicalCoordinates.transformPolygon(Polygon3D polygon)
          Transforms a Polygon3D object to Screen Coordinates.
 

Methods in com.quinncurtis.chart3djava with parameters of type Polygon3D
 int PolygonList.addPolygon(Polygon3D newpolygon)
          Add the a polygon to the polygonArray.
 int PolygonList.addPolygons(Polygon3D[] newpolygons)
          Adds an array of polygons to the PolygonList object.
 double Transform3D.calcPlaneNormal(Polygon3D p, ChartPoint3D D)
          Calculates the vector normal to the plane defined by three points, and takes the dot product and that normal and the point D.
 int Transform3D.clipPolygonPlane(ChartRectangle3D clipbox, Polygon3D polygon)
          Clips a polygon against the clipping frame.
static Polygon3D Polygon3D.convertForStepMode(Polygon3D polygon, int stepmode)
          Convert a polygon to a "stepped" version of the same polygon.
 void Polygon3D.copy(Polygon3D source)
          Copies the source object.
 boolean PhysicalCoordinates.cullRearFacingPolygon(Polygon3D polygon)
          Remove rear facing polygons of a solid that cannot be seen anyway.
static void Polygon3D.draw(java.awt.Graphics2D g2, Polygon3D polygon)
          A static routine that draws a Polygon3D object.
 int Transform3D.polygonClipper3D(ChartRectangle3D clipbox, Polygon3D polygon)
          Clips a polygon against the clipping frame.
static void Polygon3D.polygonTransform3D(Polygon3D polygon, Transform3D transform)
          Static routine transform the polygon using the specified Transform3D object.
 void PolygonList.setElement(int index, Polygon3D value)
          Sets the value of an individual polygon in the Polygon3D list.
 void ChartSymbol.setSymbolShape(Polygon3D shape)
          Sets the GeneralPath of the current symbol.
 Polygon3D PhysicalCoordinates.transformPolygon(Polygon3D polygon)
          Transforms a Polygon3D object to Screen Coordinates.
 

Constructors in com.quinncurtis.chart3djava with parameters of type Polygon3D
ChartSymbol(PhysicalCoordinates transform, Polygon3D symbolshape, ChartAttribute attrib)
          This constructor creates a new ChartSymbol object using the specified scale, GeneralPath and attributes.
Polygon3D(Polygon3D source)
          Constructor initializes the polygon as acopy of a another Polygon3D object.