Uses of Class
com.quinncurtis.chart3djava.ChartScale

Uses of ChartScale in com.quinncurtis.chart3djava
 

Subclasses of ChartScale in com.quinncurtis.chart3djava
 class LinearScale
          The LinearScale class implements a linear coordinate system for a single coordinate, x or y.
 class LogScale
          The LogScale class implements a logarithmic coordinate system for a single coordinate, x or y.
 class TimeScale
          The TimeScale class implements a time based coordinate system for a single coordinate, x or y.
 

Methods in com.quinncurtis.chart3djava that return ChartScale
 ChartScale PhysicalCoordinates.getXScale()
          This method returns the xScale scaling object, the ChartScale object used to transform x-values to/from physical to working coordinates.
 ChartScale PhysicalCoordinates.getYScale()
          This method returns the yScale scaling object, the ChartScale object used to transform y-values to/from physical to working coordinates.
 ChartScale PhysicalCoordinates.getZScale()
          This method returns the zScale scaling object, the ChartScale object used to transform z-values to/from physical to working coordinates.
 

Methods in com.quinncurtis.chart3djava with parameters of type ChartScale
 void ChartScale.copy(ChartScale source)
          Copies the source scale object.
 void PhysicalCoordinates.setPhysScales(ChartScale xscale, ChartScale yscale, ChartScale zscale)
          This method initializes an PhysicalCoordinates object, specifying the ChartScale objects used to transform x- and y-values to/from physical to working coordinates.
 void PhysicalCoordinates.setXScale(ChartScale xscale)
          This method initializes the xScale scaling object, specifying the ChartScale object used to transform x-values to/from physical to working coordinates.
 void PhysicalCoordinates.setYScale(ChartScale yscale)
          This method initializes the yScale scaling object, specifying the ChartScale object used to transform y-values to/from physical to working coordinates.
 void PhysicalCoordinates.setZScale(ChartScale zscale)
          This method initializes the zScale scaling object, specifying the ChartScale object used to transform z-values to/from physical to working coordinates.
 

Constructors in com.quinncurtis.chart3djava with parameters of type ChartScale
PhysicalCoordinates(ChartScale xscale, ChartScale yscale)
          This constructor creates a new PhysicalCoordinates object, specifying the ChartScale objects used to transform x- and y-values to/from physical to working coordinates.
PhysicalCoordinates(ChartScale xscale, ChartScale yscale, ChartScale zscale)
          This constructor creates a new PhysicalCoordinates object, specifying the ChartScale objects used to transform x- and y-values to/from physical to working coordinates.