Package | Description |
---|---|
org.locationtech.jts.algorithm.construct |
Provides classes that implement various kinds of geometric constructions.
|
org.locationtech.jts.geom |
Contains the
Geometry interface hierarchy and supporting classes. |
Modifier and Type | Method and Description |
---|---|
Point |
LargestEmptyCircle.getCenter()
Gets the center point of the Largest Empty Circle
(up to the tolerance distance).
|
Point |
MaximumInscribedCircle.getCenter()
Gets the center point of the maximum inscribed circle
(up to the tolerance distance).
|
static Point |
LargestEmptyCircle.getCenter(Geometry obstacles,
double tolerance)
Computes the center point of the Largest Empty Circle
interior-disjoint to a set of obstacles,
with accuracy to a given tolerance distance.
|
static Point |
MaximumInscribedCircle.getCenter(Geometry polygonal,
double tolerance)
Computes the center point of the Maximum Inscribed Circle
of a polygonal geometry, up to a given tolerance distance.
|
static Point |
LargestEmptyCircle.getCenter(Geometry obstacles,
Geometry boundary,
double tolerance)
Computes the center point of the Largest Empty Circle
interior-disjoint to a set of obstacles and within a polygonal boundary,
with accuracy to a given tolerance distance.
|
Point |
LargestEmptyCircle.getRadiusPoint()
Gets a point defining the radius of the Largest Empty Circle.
|
Point |
MaximumInscribedCircle.getRadiusPoint()
Gets a point defining the radius of the Maximum Inscribed Circle.
|
Modifier and Type | Method and Description |
---|---|
Point |
GeometryFactory.createPoint()
Constructs an empty
Point geometry. |
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 this
Geometry . |
Point |
LineString.getEndPoint() |
Point |
Geometry.getInteriorPoint()
Computes an interior point of this
Geometry . |
Point |
LineString.getPointN(int n) |
Point |
LineString.getStartPoint() |
Point |
Point.reverse() |
static Point[] |
GeometryFactory.toPointArray(Collection points)
Converts the
List to an array. |
Modifier and Type | Method and Description |
---|---|
MultiPoint |
GeometryFactory.createMultiPoint(Point[] point)
Creates a
MultiPoint using the given Point s. |
Constructor and Description |
---|
MultiPoint(Point[] points,
GeometryFactory factory) |
MultiPoint(Point[] points,
PrecisionModel precisionModel,
int SRID)
Deprecated.
Use GeometryFactory instead
|
Copyright © 2024. All rights reserved.