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 PointPGboxbase. llbThe lower left bottom corner of the box.protected PointPGboxbase. urtThe upper right top corner of the box.Methods in io.github.sebasbaumh.postgis that return Point Modifier and Type Method Description PointPoint. copy()Creates a copy of thisPoint.PointCompoundCurve. getEndPoint()PointLineBasedGeometry. getEndPoint()Gets the end point.PointLineString. getEndPoint()PointPolygonBase. getEndPoint()PointPGboxbase. getLLB()Returns the lower left bottom corner of the box as a Point objectPointCompoundCurve. getStartPoint()PointLineBasedGeometry. getStartPoint()Gets the start point.PointLineString. getStartPoint()PointPolygonBase. getStartPoint()PointPGboxbase. getURT()Returns the upper right top corner of the box as a Point objectPointPoint. to2d()Gets thisPointas a 2d object.Methods in io.github.sebasbaumh.postgis that return types with arguments of type Point Modifier and Type Method Description Iterable<Point>CompoundCurve. getCoordinates()abstract Iterable<Point>Geometry. getCoordinates()Gets the coordinates of thisGeometry.Iterable<Point>LineString. getCoordinates()Iterable<Point>MultiGeometry. getCoordinates()Iterable<Point>Point. getCoordinates()Iterable<Point>PolygonBase. getCoordinates()Iterator<Point>LineString. iterator()Methods in io.github.sebasbaumh.postgis with parameters of type Point Modifier and Type Method Description voidLineString. add(Point p)Adds the given point.booleanPoint. coordsAreEqual(Point other)doublePoint. 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 voidLineString. addAll(Iterable<Point> geoms)Adds all given points.static doublePostGisUtil. calcAreaSigned(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(String type, Point llb, Point urt)Constructs an instance.Constructor parameters in io.github.sebasbaumh.postgis with type arguments of type Point Constructor Description CircularString(Iterable<Point> points)Constructs an instance.LinearRing(Iterable<Point> points)Constructs an instance.LineString(int type, Iterable<Point> points)Constructor for subclasses.LineString(Iterable<Point> points)Constructs an instance.MultiPoint(Iterable<Point> points)Constructs an instance.
-