Uses of Class
org.postgresql.geometric.PGpoint
-
Packages that use PGpoint Package Description org.postgresql.geometric -
-
Uses of PGpoint in org.postgresql.geometric
Fields in org.postgresql.geometric declared as PGpoint Modifier and Type Field Description PGpoint
PGcircle. center
This is the center point.PGpoint[]
PGbox. point
These are the two points.PGpoint[]
PGlseg. point
These are the two points.PGpoint[]
PGpath. points
The points defining this path.PGpoint[]
PGpolygon. points
The points defining the polygon.Constructors in org.postgresql.geometric with parameters of type PGpoint Constructor Description PGbox(PGpoint p1, PGpoint p2)
PGcircle(PGpoint c, double r)
PGline(PGpoint p1, PGpoint p2)
PGlseg(PGpoint p1, PGpoint p2)
PGpath(PGpoint[] points, boolean open)
PGpolygon(PGpoint[] points)
Creates a polygon using an array of PGpoints.
-