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.PointCirclePart.getCenter()Get center.final Shape.PointBezierCurve.getControlPoint()Get the control point for the quadratic Bezier curve.final Shape.PointBezierCurve.getControlPoint1()Get the first control point for the cubic Bezier curve.final Shape.PointBezierCurve.getControlPoint2()Get the second control point for the cubic Bezier curve.final Shape.PointBezierCurve.getFrom()Get the "from" point.final Shape.PointLine.getFrom()Get the "from" point.final Shape.PointBezierCurve.getTo()Get the "to" point.final Shape.PointLine.getTo()Get the "to" point.Methods in com.storedobject.chart with parameters of type Shape.PointModifier and TypeMethodDescriptionvoidPolyline.add(int index, Shape.Point... points) Add points.voidPolyline.add(Shape.Point... points) Add points.protected static voidShape.encodePoint(StringBuilder sb, Shape.Point point) Helper method: Encode aShape.Point.protected static voidShape.encodePoint(StringBuilder sb, String nameX, String nameY, Shape.Point point) Helper method: Encode aShape.Point.voidPolyline.remove(Shape.Point... points) Remove points.voidCirclePart.setCenter(Shape.Point center) Set center.voidBezierCurve.setControlPoint(Shape.Point controlPoint) Set the control point for the quadratic Bezier curve.voidBezierCurve.setControlPoint1(Shape.Point controlPoint) Set the first control point for the cubic Bezier curve.voidBezierCurve.setControlPoint2(Shape.Point controlPoint) Set the second control point for the cubic Bezier curve.voidBezierCurve.setFrom(Shape.Point from) Set the "from" point.voidLine.setFrom(Shape.Point from) Set the "from" point.voidShape.setPosition(Shape.Point positionXY) Set the X and Y positions of this shape in the coordinate system.voidBezierCurve.setTo(Shape.Point to) Set the "to" point.voidLine.setTo(Shape.Point to) Set the "to" point.Method parameters in com.storedobject.chart with type arguments of type Shape.PointModifier and TypeMethodDescriptionvoidPolyline.add(int index, Collection<Shape.Point> points) Add points.voidPolyline.add(Collection<Shape.Point> points) Add points.voidPolyline.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.