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.awt Classes to perform conversions from Java2D shape objects.org.locationtech.jts.geom Contains theGeometry
interface hierarchy and supporting classes.org.locationtech.jts.geom.util Provides classes that parse and modify Geometry objects.org.locationtech.jts.geomgraph Contains classes that implement topology graphs.org.locationtech.jts.io Contains the interfaces for converting JTS objects to and from other formats.org.locationtech.jts.io.gml2 Classes to read and write the GML2 geometry format.org.locationtech.jts.io.kml org.locationtech.jts.operation.buffer Provides classes for computing buffers of geometriesorg.locationtech.jts.operation.distance Provides classes for computing the distance between geometriesorg.locationtech.jts.operation.distance3d org.locationtech.jts.operation.predicate Classes which implement topological predicates optimized for particular kinds of geometries.org.locationtech.jts.operation.valid Provides classes for testing the validity of geometries.org.locationtech.jtsexample.geom.prep org.locationtech.jtsexample.technique org.locationtech.jtstest.testbuilder -
-
Uses of Point in org.locationtech.jts.algorithm
Methods in org.locationtech.jts.algorithm with parameters of type Point Modifier and Type Method Description private int
PointLocator. locateOnPoint(Coordinate p, Point pt)
-
Uses of Point in org.locationtech.jts.awt
Methods in org.locationtech.jts.awt with parameters of type Point Modifier and Type Method Description private java.awt.Shape
ShapeWriter. toShape(Point point)
-
Uses of Point in org.locationtech.jts.geom
Methods in org.locationtech.jts.geom that return Point Modifier and Type Method Description Point
Point. copy()
Creates and returns a full copy of thisPoint
object.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.private Point
Geometry. createPointFromInternalCoord(Coordinate coord, Geometry exemplar)
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 -
Uses of Point in org.locationtech.jts.geom.util
Methods in org.locationtech.jts.geom.util with parameters of type Point Modifier and Type Method Description protected Geometry
GeometryTransformer. transformPoint(Point geom, Geometry parent)
-
Uses of Point in org.locationtech.jts.geomgraph
Methods in org.locationtech.jts.geomgraph with parameters of type Point Modifier and Type Method Description private void
GeometryGraph. addPoint(Point p)
Add a Point to the graph. -
Uses of Point in org.locationtech.jts.io
Methods in org.locationtech.jts.io that return Point Modifier and Type Method Description private Point
WKBReader. readPoint()
private Point
WKTReader. readPointText()
Creates aPoint
using the next token in the stream.private Point[]
WKTReader. toPoints(Coordinate[] coordinates)
Creates an array ofPoint
s having the givenCoordinate
s.Methods in org.locationtech.jts.io with parameters of type Point Modifier and Type Method Description private void
WKBWriter. writePoint(Point pt, OutStream os)
-
Uses of Point in org.locationtech.jts.io.gml2
Methods in org.locationtech.jts.io.gml2 with parameters of type Point Modifier and Type Method Description private void
GMLWriter. writePoint(Point p, java.io.Writer writer, int level)
-
Uses of Point in org.locationtech.jts.io.kml
Methods in org.locationtech.jts.io.kml with parameters of type Point Modifier and Type Method Description private void
KMLWriter. writePoint(Point p, java.lang.String attributes, int level, java.lang.StringBuffer buf)
-
Uses of Point in org.locationtech.jts.operation.buffer
Methods in org.locationtech.jts.operation.buffer with parameters of type Point Modifier and Type Method Description private void
OffsetCurveSetBuilder. addPoint(Point p)
Add a Point to the graph. -
Uses of Point in org.locationtech.jts.operation.distance
Methods in org.locationtech.jts.operation.distance with parameters of type Point Modifier and Type Method Description private void
DistanceOp. computeMinDistance(LineString line, Point pt, GeometryLocation[] locGeom)
-
Uses of Point in org.locationtech.jts.operation.distance3d
Methods in org.locationtech.jts.operation.distance3d with parameters of type Point Modifier and Type Method Description private void
Distance3DOp. computeMinDistanceLinePoint(LineString line, Point point, boolean flip)
private void
Distance3DOp. computeMinDistancePointPoint(Point point0, Point point1, boolean flip)
private void
Distance3DOp. computeMinDistancePolygonPoint(PlanarPolygon3D polyPlane, Point point, boolean flip)
-
Uses of Point in org.locationtech.jts.operation.predicate
Methods in org.locationtech.jts.operation.predicate with parameters of type Point Modifier and Type Method Description private boolean
RectangleContains. isPointContainedInBoundary(Point point)
-
Uses of Point in org.locationtech.jts.operation.valid
Methods in org.locationtech.jts.operation.valid with parameters of type Point Modifier and Type Method Description private void
IsValidOp. checkValid(Point g)
Checks validity of a Point. -
Uses of Point in org.locationtech.jtsexample.geom.prep
Methods in org.locationtech.jtsexample.geom.prep that return Point Modifier and Type Method Description (package private) static Point
PreparedGeometryExample. createRandomPoint()
-
Uses of Point in org.locationtech.jtsexample.technique
Methods in org.locationtech.jtsexample.technique that return Point Modifier and Type Method Description (package private) static Point
SearchUsingPreparedGeometryIndex. createRandomPoint()
-
Uses of Point in org.locationtech.jtstest.testbuilder
Fields in org.locationtech.jtstest.testbuilder declared as Point Modifier and Type Field Description (package private) Point
PointNode. pt
Constructors in org.locationtech.jtstest.testbuilder with parameters of type Point Constructor Description PointNode(Point p, GeometryContext context)
-