Uses of Class
jcckit.graphic.GraphPoint
Packages that use GraphPoint
-
Uses of GraphPoint in jcckit.graphic
Methods in jcckit.graphic that return GraphPointModifier and TypeMethodDescriptionRectangle.getCenter()
Returns the center of this element.Polygon.getPoint
(int index) Returns the point for the specified index.Text.getPosition()
Returns the position.Methods in jcckit.graphic with parameters of type GraphPointModifier and TypeMethodDescriptionvoid
Polygon.addPoint
(GraphPoint point) Adds a new point to the end of the list of points.boolean
ClippingRectangle.isInside
(GraphPoint point) Returns true if the specified point is inside this rectangle.boolean
ClippingShape.isInside
(GraphPoint point) Returns true if the specified point is inside this clipping shape.void
Polygon.replacePointAt
(int index, GraphPoint point) Replaces the point at the specified index by a new one.Constructors in jcckit.graphic with parameters of type GraphPointModifierConstructorDescriptionOval
(GraphPoint center, double width, double height, GraphicAttributes attributes) Creates a new instance.Rectangle
(GraphPoint center, double width, double height, GraphicAttributes attributes) Creates a new instance.Text
(GraphPoint position, String text, GraphicAttributes attributes) Creates an instance with the specified parameters. -
Uses of GraphPoint in jcckit.plot
Methods in jcckit.plot that return GraphPointModifier and TypeMethodDescriptionPositionHint.getOrigin()
Returns the origin.PositionHint.getPosition()
Returns the position.Methods in jcckit.plot with parameters of type GraphPointModifier and TypeMethodDescriptionCurve.addPoint
(GraphPoint point, Hint hintFromPreviousCurve) Appends a new point to the curve.SimpleCurve.addPoint
(GraphPoint point, Hint hintFromPreviousCurve) Appends a new point to the curve if inside the clipping shape.AbstractSymbolFactory.createLegendSymbol
(GraphPoint centerPosition, double size) Creates a symbol for the legend at the specified position.BarFactory.createLegendSymbol
(GraphPoint centerPosition, double size) Creates a symbol for the legend at the specified position.ErrorBarFactory.createLegendSymbol
(GraphPoint centerPosition, double size) Creates the legend symbol.SymbolFactory.createLegendSymbol
(GraphPoint centerPosition, double size) Creates a symbol for the legend at the specified position.protected abstract GraphicalElement
AbstractSymbolFactory.createPlainSymbol
(GraphPoint centerPosition, double size, GraphicAttributes attributes) Creates the graphical element of the plain symbol.protected GraphicalElement
BarFactory.createPlainSymbol
(GraphPoint centerPosition, double size, GraphicAttributes attributes) Returns null because this method isn't needed but has to be implemented.protected GraphicalElement
CircleSymbolFactory.createPlainSymbol
(GraphPoint centerPosition, double size, GraphicAttributes attributes) Creates a circle.protected GraphicalElement
SquareSymbolFactory.createPlainSymbol
(GraphPoint centerPosition, double size, GraphicAttributes attributes) Creates aRectangle
.protected Symbol
AbstractSymbolFactory.createSymbol
(GraphPoint point, GraphicAttributes attributes, Hint hintForNextPoint, Hint hintFromPreviousCurve) Creates a symbol.AbstractSymbolFactory.createSymbol
(GraphPoint point, Hint hintFromPreviousPoint, Hint hintFromPreviousCurve) Creates a symbol.protected Symbol
BarFactory.createSymbol
(GraphPoint point, GraphicAttributes attributes, Hint hintForNextPoint, Hint hintFromPreviousCurve) Creates a bar at the specified point.ErrorBarFactory.createSymbol
(GraphPoint point, Hint hintFromPreviousPoint, Hint hintFromPreviousCurve) Creates either the curve symbol or the error bars.SymbolFactory.createSymbol
(GraphPoint point, Hint hintFromPreviousPoint, Hint hintFromPreviousCurve) Creates a symbol for the specified point taking into account the specified hints.Plot.transform
(GraphPoint point) Transforms a point from device-independent coordinates into data coordinates.Constructors in jcckit.plot with parameters of type GraphPointModifierConstructorDescriptionCartesianCoordinateSystem
(GraphPoint origin, AxisParameters xAxisParameters, AxisParameters yAxisParameters) Creates an instance for the specified origin and parameters of both axes.PositionHint
(GraphPoint origin, GraphPoint position) Creates an instance based on two points. -
Uses of GraphPoint in jcckit.renderer
Methods in jcckit.renderer that return GraphPointModifier and TypeMethodDescriptionTransformation.transformBack
(int x, int y) Transforms a point in Java coordinates back into device-independent coordinates. -
Uses of GraphPoint in jcckit.transformation
Methods in jcckit.transformation that return GraphPointModifier and TypeMethodDescriptionCartesianTransformation.transformToGraph
(DataPoint point) Transformation.transformToGraph
(DataPoint point) Transforms aDataPoint
into aGraphPoint
.Methods in jcckit.transformation with parameters of type GraphPointModifier and TypeMethodDescriptionCartesianTransformation.transformToData
(GraphPoint point) Transformation.transformToData
(GraphPoint point) Transforms aGraphPoint
into aDataPoint
.Constructors in jcckit.transformation with parameters of type GraphPointModifierConstructorDescriptionCartesianTransformation
(boolean xLogScale, boolean yLogScale, DataPoint dataPoint1, GraphPoint graphPoint1, DataPoint dataPoint2, GraphPoint graphPoint2) Creates an instance from the specified reference points.