Uses of Class
org.locationtech.jts.geom.Point
-
Packages that use Point Package Description org.locationtech.jts.algorithm Contains classes and interfaces implementing fundamental computational geometry algorithms.org.locationtech.jts.geom Contains theGeometry
interface hierarchy and supporting classes. -
-
Uses of Point in org.locationtech.jts.algorithm
Methods in org.locationtech.jts.algorithm that return Point Modifier and Type Method Description static Point
InteriorPoint. getInteriorPoint(Geometry geom)
-
Uses of Point in org.locationtech.jts.geom
Methods in org.locationtech.jts.geom that return Point Modifier and Type Method Description Point
GeometryFactory. createPoint()
Point
GeometryFactory. createPoint(Coordinate coordinate)
Creates a Point using the given Coordinate.Point
GeometryFactory. createPoint(CoordinateSequence coordinates)
Creates a Point using the given CoordinateSequence; a null or empty CoordinateSequence will create an empty Point.static Point
GeometryFactory. createPointFromInternalCoord(Coordinate coord, Geometry exemplar)
Point
Geometry. getCentroid()
Computes the centroid of thisGeometry
.Point
LineString. getEndPoint()
Point
Geometry. getInteriorPoint()
Computes an interior point of thisGeometry
.Point
LineString. getPointN(int n)
Point
LineString. getStartPoint()
static Point[]
GeometryFactory. toPointArray(java.util.Collection points)
Converts theList
to an array.Methods in org.locationtech.jts.geom with parameters of type Point Modifier and Type Method Description MultiPoint
GeometryFactory. createMultiPoint(Point[] point)
Creates aMultiPoint
using the givenPoint
s.Constructors in org.locationtech.jts.geom with parameters of type Point Constructor Description MultiPoint(Point[] points, GeometryFactory factory)
MultiPoint(Point[] points, PrecisionModel precisionModel, int SRID)
Deprecated.Use GeometryFactory instead
-