jas.plot
Interface DoubleCoordinateTransformation

All Superinterfaces:
CoordinateTransformation, Transformation
All Known Implementing Classes:
DoubleAxis

public interface DoubleCoordinateTransformation
extends CoordinateTransformation, Transformation

Converts between double values and pixel values for the DoubleAxis type.

See Also:
DoubleAxis

Method Summary
 double convert(double d)
          Returns a pixel value for a given double value.
 double getPlotMax()
          Returns the maximum value on the axis.
 double getPlotMin()
          Returns the minimum value on the axis.
 double unConvert(double i)
          Returns a double value for a given pixel.
 

Method Detail

convert

public double convert(double d)
Returns a pixel value for a given double value.
Specified by:
convert in interface Transformation

unConvert

public double unConvert(double i)
Returns a double value for a given pixel.

getPlotMin

public double getPlotMin()
Returns the minimum value on the axis.

getPlotMax

public double getPlotMax()
Returns the maximum value on the axis.