Uses of Class
org.locationtech.jts.geom.Point
-
Packages that use Point Package Description org.locationtech.jts.algorithm.construct Provides classes that implement various kinds of geometric constructions.org.locationtech.jts.geom Contains theGeometryinterface hierarchy and supporting classes. -
-
Uses of Point in org.locationtech.jts.algorithm.construct
Methods in org.locationtech.jts.algorithm.construct that return Point Modifier and Type Method Description PointLargestEmptyCircle. getCenter()Gets the center point of the Largest Empty Circle (up to the tolerance distance).static PointLargestEmptyCircle. getCenter(Geometry obstacles, double tolerance)Computes the center point of the Largest Empty Circle within a set of obstacles, up to a given tolerance distance.PointMaximumInscribedCircle. getCenter()Gets the center point of the maximum inscribed circle (up to the tolerance distance).static PointMaximumInscribedCircle. getCenter(Geometry polygonal, double tolerance)Computes the center point of the Maximum Inscribed Circle of a polygonal geometry, up to a given tolerance distance.PointLargestEmptyCircle. getRadiusPoint()Gets a point defining the radius of the Largest Empty Circle.PointMaximumInscribedCircle. getRadiusPoint()Gets a point defining the radius of the Maximum Inscribed Circle. -
Uses of Point in org.locationtech.jts.geom
Methods in org.locationtech.jts.geom that return Point Modifier and Type Method Description PointGeometryFactory. createPoint()Constructs an emptyPointgeometry.PointGeometryFactory. createPoint(Coordinate coordinate)Creates a Point using the given Coordinate.PointGeometryFactory. createPoint(CoordinateSequence coordinates)Creates a Point using the given CoordinateSequence; a null or empty CoordinateSequence will create an empty Point.static PointGeometryFactory. createPointFromInternalCoord(Coordinate coord, Geometry exemplar)PointGeometry. getCentroid()Computes the centroid of thisGeometry.PointLineString. getEndPoint()PointGeometry. getInteriorPoint()Computes an interior point of thisGeometry.PointLineString. getPointN(int n)PointLineString. getStartPoint()PointPoint. reverse()static Point[]GeometryFactory. toPointArray(java.util.Collection points)Converts theListto an array.Methods in org.locationtech.jts.geom with parameters of type Point Modifier and Type Method Description MultiPointGeometryFactory. createMultiPoint(Point[] point)Creates aMultiPointusing the givenPoints.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
-