Uses of Class
org.locationtech.jts.geom.Polygon
-
Packages that use Polygon Package Description org.locationtech.jts.algorithm.axis org.locationtech.jts.algorithm.distance Classes to compute distance metrics between geometries.org.locationtech.jts.algorithm.locate Classes to determine the topological location of points in geometries.org.locationtech.jts.geom Contains theGeometryinterface 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.geojson org.locationtech.jts.operation.buffer.validate Classes to perform validation of the results of buffer operations.org.locationtech.jts.operation.distance3d org.locationtech.jts.operation.overlayarea org.locationtech.jts.operation.polygonize An API for polygonizing sets of lines.org.locationtech.jts.operation.predicate Classes which implement topological predicates optimized for particular kinds of geometries.org.locationtech.jts.triangulate.polygon Classes for triangulating polygons.org.locationtech.jts.triangulate.quadedge Classes to implement a topological subdivision of quadeges, to support creating triangulations and Voronoi diagrams.org.locationtech.jts.triangulate.tri Classes for representing a planar triangulation as a set of linked triangles.org.locationtech.jts.util Contains support classes for the Java Topology Suite.org.locationtech.jtstest.testbuilder.geom -
-
Uses of Polygon in org.locationtech.jts.algorithm.axis
Constructors in org.locationtech.jts.algorithm.axis with parameters of type Polygon Constructor Description ApproximateMedialAxis(Polygon polygon) -
Uses of Polygon in org.locationtech.jts.algorithm.distance
Methods in org.locationtech.jts.algorithm.distance with parameters of type Polygon Modifier and Type Method Description static voidDistanceToPoint. computeDistance(Polygon poly, Coordinate pt, PointPairDistance ptDist) -
Uses of Polygon in org.locationtech.jts.algorithm.locate
Methods in org.locationtech.jts.algorithm.locate with parameters of type Polygon Modifier and Type Method Description static booleanSimplePointInAreaLocator. containsPointInPolygon(Coordinate p, Polygon poly)Determines whether a point lies in aPolygon.static intSimplePointInAreaLocator. locatePointInPolygon(Coordinate p, Polygon poly) -
Uses of Polygon in org.locationtech.jts.geom
Methods in org.locationtech.jts.geom that return Polygon Modifier and Type Method Description protected PolygonPolygon. copyInternal()PolygonGeometryFactory. createPolygon()Constructs an emptyPolygongeometry.PolygonGeometryFactory. createPolygon(Coordinate[] shell)Constructs aPolygonwith the given exterior boundary.PolygonGeometryFactory. createPolygon(CoordinateSequence shell)Constructs aPolygonwith the given exterior boundary.PolygonGeometryFactory. createPolygon(LinearRing shell)Constructs aPolygonwith the given exterior boundary.PolygonGeometryFactory. createPolygon(LinearRing shell, LinearRing[] holes)Constructs aPolygonwith the given exterior boundary and interior boundaries.PolygonPolygon. reverse()protected PolygonPolygon. reverseInternal()static Polygon[]GeometryFactory. toPolygonArray(Collection polygons)Converts theListto an array.Methods in org.locationtech.jts.geom with parameters of type Polygon Modifier and Type Method Description MultiPolygonGeometryFactory. createMultiPolygon(Polygon[] polygons)Creates a MultiPolygon using the given Polygons; a null or empty array will create an empty Polygon.Constructors in org.locationtech.jts.geom with parameters of type Polygon Constructor Description MultiPolygon(Polygon[] polygons, GeometryFactory factory)MultiPolygon(Polygon[] polygons, PrecisionModel precisionModel, int SRID)Deprecated.Use GeometryFactory instead -
Uses of Polygon in org.locationtech.jts.geom.util
Methods in org.locationtech.jts.geom.util with parameters of type Polygon Modifier and Type Method Description protected GeometryGeometryTransformer. transformPolygon(Polygon geom, Geometry parent) -
Uses of Polygon in org.locationtech.jts.geomgraph
Methods in org.locationtech.jts.geomgraph that return Polygon Modifier and Type Method Description PolygonEdgeRing. toPolygon(GeometryFactory geometryFactory) -
Uses of Polygon in org.locationtech.jts.io.geojson
Methods in org.locationtech.jts.io.geojson that return Polygon Modifier and Type Method Description static PolygonOrientationTransformer. transformCCW(Polygon polygon)Transforms a polygon using the Right Hand Rule specifications defined in the latest GeoJSON specification.Methods in org.locationtech.jts.io.geojson with parameters of type Polygon Modifier and Type Method Description static PolygonOrientationTransformer. transformCCW(Polygon polygon)Transforms a polygon using the Right Hand Rule specifications defined in the latest GeoJSON specification. -
Uses of Polygon in org.locationtech.jts.operation.buffer.validate
Methods in org.locationtech.jts.operation.buffer.validate with parameters of type Polygon Modifier and Type Method Description static voidDistanceToPointFinder. computeDistance(Polygon poly, Coordinate pt, PointPairDistance ptDist) -
Uses of Polygon in org.locationtech.jts.operation.distance3d
Methods in org.locationtech.jts.operation.distance3d that return Polygon Modifier and Type Method Description PolygonPlanarPolygon3D. getPolygon()Constructors in org.locationtech.jts.operation.distance3d with parameters of type Polygon Constructor Description PlanarPolygon3D(Polygon poly) -
Uses of Polygon in org.locationtech.jts.operation.overlayarea
Methods in org.locationtech.jts.operation.overlayarea with parameters of type Polygon Modifier and Type Method Description static doubleSimpleOverlayArea. intersectionArea(Polygon poly0, Polygon poly1)Computes the area of intersection of two polygons with no holes.Constructors in org.locationtech.jts.operation.overlayarea with parameters of type Polygon Constructor Description SimpleOverlayArea(Polygon geom0, Polygon geom1) -
Uses of Polygon in org.locationtech.jts.operation.polygonize
Fields in org.locationtech.jts.operation.polygonize with type parameters of type Polygon Modifier and Type Field Description protected List<Polygon>Polygonizer. polyList -
Uses of Polygon in org.locationtech.jts.operation.predicate
Methods in org.locationtech.jts.operation.predicate with parameters of type Polygon Modifier and Type Method Description static booleanRectangleContains. contains(Polygon rectangle, Geometry b)Tests whether a rectangle contains a given geometry.static booleanRectangleIntersects. intersects(Polygon rectangle, Geometry b)Tests whether a rectangle intersects a given geometry.Constructors in org.locationtech.jts.operation.predicate with parameters of type Polygon Constructor Description RectangleContains(Polygon rectangle)Create a new contains computer for two geometries.RectangleIntersects(Polygon rectangle)Create a new intersects computer for a rectangle. -
Uses of Polygon in org.locationtech.jts.triangulate.polygon
Methods in org.locationtech.jts.triangulate.polygon that return Polygon Modifier and Type Method Description static PolygonPolygonHoleJoiner. joinAsPolygon(Polygon polygon)Joins the shell and holes of a polygon and returns the result as an (invalid) Polygon.Methods in org.locationtech.jts.triangulate.polygon with parameters of type Polygon Modifier and Type Method Description static Coordinate[]PolygonHoleJoiner. join(Polygon polygon)Joins the shell and holes of a polygon and returns the result as sequence of Coordinates.static PolygonPolygonHoleJoiner. joinAsPolygon(Polygon polygon)Joins the shell and holes of a polygon and returns the result as an (invalid) Polygon.Constructors in org.locationtech.jts.triangulate.polygon with parameters of type Polygon Constructor Description PolygonHoleJoiner(Polygon polygon)Creates a new hole joiner. -
Uses of Polygon in org.locationtech.jts.triangulate.quadedge
Methods in org.locationtech.jts.triangulate.quadedge that return Polygon Modifier and Type Method Description PolygonQuadEdgeTriangle. getGeometry(GeometryFactory fact)PolygonQuadEdgeSubdivision. getVoronoiCellPolygon(QuadEdge qe, GeometryFactory geomFact)Gets the Voronoi cell around a site specified by the origin of a QuadEdge. -
Uses of Polygon in org.locationtech.jts.triangulate.tri
Methods in org.locationtech.jts.triangulate.tri that return Polygon Modifier and Type Method Description PolygonTri. toPolygon(GeometryFactory geomFact)Creates aPolygonrepresenting this triangle. -
Uses of Polygon in org.locationtech.jts.util
Methods in org.locationtech.jts.util that return Polygon Modifier and Type Method Description PolygonGeometricShapeFactory. createArcPolygon(double startAng, double angExtent)Creates an elliptical arc polygon.PolygonGeometricShapeFactory. createCircle()Creates a circular or ellipticalPolygon.PolygonGeometricShapeFactory. createEllipse()Creates an ellipticalPolygon.PolygonGeometricShapeFactory. createRectangle()Creates a rectangularPolygon.PolygonGeometricShapeFactory. createSquircle()Creates a squircularPolygon.PolygonGeometricShapeFactory. createSupercircle(double power)Creates a supercircularPolygonof a given positive power. -
Uses of Polygon in org.locationtech.jtstest.testbuilder.geom
Methods in org.locationtech.jtstest.testbuilder.geom that return Polygon Modifier and Type Method Description PolygonGeometryCombiner. addHole(Polygon poly, LinearRing hole)Methods in org.locationtech.jtstest.testbuilder.geom with parameters of type Polygon Modifier and Type Method Description PolygonGeometryCombiner. addHole(Polygon poly, LinearRing hole)static CoordinateConstrainedInteriorPoint. getCoordinate(Polygon poly)static CoordinateConstrainedInteriorPoint. getCoordinate(Polygon poly, Envelope constraint)static CoordinateConstrainedInteriorPoint. getCoordinate(Polygon poly, Geometry constraint)Constructors in org.locationtech.jtstest.testbuilder.geom with parameters of type Polygon Constructor Description ConstrainedInteriorPoint(Polygon poly)ConstrainedInteriorPoint(Polygon poly, Envelope constraint)
-