Package jcckit.plot
Interface CoordinateSystem
-
- All Known Implementing Classes:
CartesianCoordinateSystem
public interface CoordinateSystemInterface for all generators of coordinate systems. A CoordinateSystem creates aGraphicalCompositewhich contains all theGraphicalElementsdefining axes, labels, grid, etc.- Author:
- Franz-Josef Elmer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClippingShapegetClippingShape()Returns the clipping chape ofCurvesdrawn on top of the coordinates system.TransformationgetTransformation()Returns the transformation between data coordinates and device-independent graphcial coordinates.GraphicalElementgetView()Returns the graphical representation of a coordinate system.
-
-
-
Method Detail
-
getView
GraphicalElement getView()
Returns the graphical representation of a coordinate system. Different invocations of this method may return different coordinate systems, e.g., due to changes in the transformation or clipping shapes.
-
getClippingShape
ClippingShape getClippingShape()
Returns the clipping chape ofCurvesdrawn on top of the coordinates system. Different invocations of this method may return different clipping shapes.
-
getTransformation
Transformation getTransformation()
Returns the transformation between data coordinates and device-independent graphcial coordinates. Different invocations of this method may return different transformations.
-
-