Package | Description |
---|---|
io.vertx.pgclient.data |
Modifier and Type | Method and Description |
---|---|
Point |
Circle.getCenterPoint() |
Point |
Box.getLowerLeftCorner() |
Point |
LineSegment.getP1() |
Point |
LineSegment.getP2() |
Point |
Box.getUpperRightCorner() |
Point |
Point.setX(double x) |
Point |
Point.setY(double y) |
Modifier and Type | Method and Description |
---|---|
List<Point> |
Polygon.getPoints() |
List<Point> |
Path.getPoints() |
Modifier and Type | Method and Description |
---|---|
Polygon |
Polygon.addPoint(Point point) |
Path |
Path.addPoint(Point point) |
void |
Circle.setCenterPoint(Point centerPoint) |
void |
Box.setLowerLeftCorner(Point lowerLeftCorner) |
void |
LineSegment.setP1(Point p1) |
void |
LineSegment.setP2(Point p2) |
void |
Box.setUpperRightCorner(Point upperRightCorner) |
Modifier and Type | Method and Description |
---|---|
void |
Polygon.setPoints(List<Point> points) |
void |
Path.setPoints(List<Point> points) |
Constructor and Description |
---|
Box(Point upperRightCorner,
Point lowerLeftCorner) |
Circle(Point centerPoint,
double radius) |
LineSegment(Point p1,
Point p2) |
Constructor and Description |
---|
Path(boolean isOpen,
List<Point> points) |
Polygon(List<Point> points) |
Copyright © 2021 Eclipse. All rights reserved.