| Package | Description |
|---|---|
| io.r2dbc.postgresql.codec |
Encoders and Decoders for the type that the service provider understands.
|
| Modifier and Type | Method and Description |
|---|---|
Point |
Box.getA() |
Point |
Box.getB() |
Point |
Circle.getCenter() |
Point |
Lseg.getP1() |
Point |
Lseg.getP2() |
static Point |
Point.of(double x,
double y)
|
Point |
Point.translate(double x,
double y)
Translate the point by the supplied amount by adding
x and y offsets. |
Point |
Point.translate(int x,
int y)
Translate the point by the supplied amount by adding
x and y offsets. |
| Modifier and Type | Method and Description |
|---|---|
List<Point> |
Polygon.getPoints() |
List<Point> |
Path.getPoints() |
| Modifier and Type | Method and Description |
|---|---|
static Path |
Path.closed(Point... points)
Create a new closed
Polygon given points. |
static Path |
Path.of(boolean open,
Point... points)
Create a new
Polygon given points. |
static Polygon |
Polygon.of(Point... points)
Create a new
Polygon given points. |
static Circle |
Circle.of(Point center,
double radius)
|
static Line |
Line.of(Point p1,
Point p2)
Create a new
Line defined by two points. |
static Lseg |
Lseg.of(Point p1,
Point p2)
|
static Box |
Box.of(Point a,
Point b)
|
static Path |
Path.open(Point... points)
Create a new open
Path given points. |
| Modifier and Type | Method and Description |
|---|---|
static Path |
Path.closed(List<Point> points)
Create a new closed
Polygon given list of points. |
static Path |
Path.of(boolean open,
List<Point> points)
Create a new
Polygon given list of points. |
static Polygon |
Polygon.of(List<Point> points)
Create a new
Polygon given list of points. |
static Path |
Path.open(List<Point> points)
Create a new open
Path given list of points. |
Copyright © 2024. All rights reserved.