Uses of Class
com.storedobject.chart.Shape.Point
Packages that use Shape.Point
-
Uses of Shape.Point in com.storedobject.chart
Methods in com.storedobject.chart that return Shape.PointModifier and TypeMethodDescriptionfinal Shape.Point
CirclePart.getCenter()
Get center.final Shape.Point
BezierCurve.getControlPoint()
Get the control point for the quadratic Bezier curve.final Shape.Point
BezierCurve.getControlPoint1()
Get the first control point for the cubic Bezier curve.final Shape.Point
BezierCurve.getControlPoint2()
Get the second control point for the cubic Bezier curve.final Shape.Point
BezierCurve.getFrom()
Get the "from" point.final Shape.Point
Line.getFrom()
Get the "from" point.final Shape.Point
BezierCurve.getTo()
Get the "to" point.final Shape.Point
Line.getTo()
Get the "to" point.Methods in com.storedobject.chart with parameters of type Shape.PointModifier and TypeMethodDescriptionvoid
Polyline.add
(int index, Shape.Point... points) Add points.void
Polyline.add
(Shape.Point... points) Add points.protected static void
Shape.encodePoint
(StringBuilder sb, Shape.Point point) Helper method: Encode aShape.Point
.protected static void
Shape.encodePoint
(StringBuilder sb, String nameX, String nameY, Shape.Point point) Helper method: Encode aShape.Point
.void
Polyline.remove
(Shape.Point... points) Remove points.void
CirclePart.setCenter
(Shape.Point center) Set center.void
BezierCurve.setControlPoint
(Shape.Point controlPoint) Set the control point for the quadratic Bezier curve.void
BezierCurve.setControlPoint1
(Shape.Point controlPoint) Set the first control point for the cubic Bezier curve.void
BezierCurve.setControlPoint2
(Shape.Point controlPoint) Set the second control point for the cubic Bezier curve.void
BezierCurve.setFrom
(Shape.Point from) Set the "from" point.void
Line.setFrom
(Shape.Point from) Set the "from" point.void
Shape.setPosition
(Shape.Point positionXY) Set the X and Y positions of this shape in the coordinate system.void
BezierCurve.setTo
(Shape.Point to) Set the "to" point.void
Line.setTo
(Shape.Point to) Set the "to" point.Method parameters in com.storedobject.chart with type arguments of type Shape.PointModifier and TypeMethodDescriptionvoid
Polyline.add
(int index, Collection<Shape.Point> points) Add points.void
Polyline.add
(Collection<Shape.Point> points) Add points.void
Polyline.remove
(Collection<Shape.Point> points) Remove points.Constructors in com.storedobject.chart with parameters of type Shape.PointModifierConstructorDescriptionBezierCurve
(Shape.Point from, Shape.Point to, Shape.Point controlPoint) Construct a quadratic Bezier curve.BezierCurve
(Shape.Point from, Shape.Point to, Shape.Point controlPoint1, Shape.Point controlPoint2) Construct a cubic Bezier curve.Line
(Shape.Point from, Shape.Point to) Constructor.Polygon
(Shape.Point... points) Constructor.Polyline
(Shape.Point... points) Constructor.