Uses of Class
io.github.sebasbaumh.postgis.Point
-
Packages that use Point Package Description io.github.sebasbaumh.postgis -
-
Uses of Point in io.github.sebasbaumh.postgis
Fields in io.github.sebasbaumh.postgis declared as Point Modifier and Type Field Description protected Point
PGboxbase. llb
The lower left bottom corner of the box.protected Point
PGboxbase. urt
The upper right top corner of the box.Methods in io.github.sebasbaumh.postgis that return Point Modifier and Type Method Description Point
Point. copy()
Creates a copy of thisPoint
.Point
CompoundCurve. getEndPoint()
Point
LineBasedGeometry. getEndPoint()
Gets the end point.Point
LineString. getEndPoint()
Point
PolygonBase. getEndPoint()
Point
PGboxbase. getLLB()
Returns the lower left bottom corner of the box as a Point objectPoint
CompoundCurve. getStartPoint()
Point
LineBasedGeometry. getStartPoint()
Gets the start point.Point
LineString. getStartPoint()
Point
PolygonBase. getStartPoint()
Point
PGboxbase. getURT()
Returns the upper right top corner of the box as a Point objectPoint
Point. to2d()
Gets thisPoint
as a 2d object.Methods in io.github.sebasbaumh.postgis that return types with arguments of type Point Modifier and Type Method Description java.lang.Iterable<Point>
CompoundCurve. getCoordinates()
abstract java.lang.Iterable<Point>
Geometry. getCoordinates()
Gets the coordinates of thisGeometry
.java.lang.Iterable<Point>
LineString. getCoordinates()
java.lang.Iterable<Point>
MultiGeometry. getCoordinates()
java.lang.Iterable<Point>
Point. getCoordinates()
java.lang.Iterable<Point>
PolygonBase. getCoordinates()
java.util.Iterator<Point>
LineString. iterator()
Methods in io.github.sebasbaumh.postgis with parameters of type Point Modifier and Type Method Description void
LineString. add(Point p)
Adds the given point.boolean
Point. coordsAreEqual(Point other)
double
Point. distance(Point p)
Calculates the distance to the givenPoint
.Method parameters in io.github.sebasbaumh.postgis with type arguments of type Point Modifier and Type Method Description void
LineString. addAll(java.lang.Iterable<Point> geoms)
Adds all given points.static double
PostGisUtil. calcAreaSigned(java.lang.Iterable<Point> points)
Calculates the area of the outer ring of the given polygon (signed).Constructors in io.github.sebasbaumh.postgis with parameters of type Point Constructor Description PGbox2d(Point llb, Point urt)
Constructs an instance.PGbox3d(Point llb, Point urt)
Constructs an instance.PGboxbase(Point llb, Point urt)
Constructs an instance.Constructor parameters in io.github.sebasbaumh.postgis with type arguments of type Point Constructor Description CircularString(java.lang.Iterable<Point> points)
Constructs an instance.LinearRing(java.lang.Iterable<Point> points)
Constructs an instance.LineString(int type, java.lang.Iterable<Point> points)
Constructor for subclasses.LineString(java.lang.Iterable<Point> points)
Constructs an instance.MultiPoint(java.lang.Iterable<Point> points)
Constructs an instance.
-