Package jcckit.transformation
Interface Transformation
- All Known Implementing Classes:
CartesianTransformation
public interface Transformation
Interface for transformations between data coordinates
and device-independent coordinates.
-
Method Summary
Modifier and TypeMethodDescriptiontransformToData(GraphPoint point) Transforms aGraphPointinto aDataPoint.transformToGraph(DataPoint point) Transforms aDataPointinto aGraphPoint.
-
Method Details
-
transformToGraph
Transforms aDataPointinto aGraphPoint.- Parameters:
point- A point in data coordinates.- Returns:
- point tranformed into device-independent coordinates..
-
transformToData
Transforms aGraphPointinto aDataPoint.- Parameters:
point- A point in device-independent coordinates..- Returns:
- point tranformed into data coordinates.
-