Uses of Class
org.locationtech.jts.geom.Envelope
-
Packages that use Envelope Package Description org.locationtech.jts.algorithm Contains classes and interfaces implementing fundamental computational geometry algorithms.org.locationtech.jts.algorithm.match Classes to compute matching metrics between geometries.org.locationtech.jts.geom Contains theGeometry
interface hierarchy and supporting classes.org.locationtech.jts.geom.impl Implementations of interfaces for geometric structures.org.locationtech.jts.geomgraph Contains classes that implement topology graphs.org.locationtech.jts.index Provides classes for various kinds of spatial indexes.org.locationtech.jts.index.chain Contains classes that implement Monotone Chainsorg.locationtech.jts.index.kdtree Contains classes which implement a k-D tree index over 2-D point data.org.locationtech.jts.index.quadtree Contains classes that implement a Quadtree spatial indexorg.locationtech.jts.index.strtree Contains 2-D and 1-D versions of the Sort-Tile-Recursive (STR) tree, a query-only R-tree.org.locationtech.jts.noding.snapround Contains classes to implement the Snap Rounding algorithm for noding linestrings.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.union Classes to perform efficent unioning of collections of geometries.org.locationtech.jts.operation.valid Provides classes for testing the validity of geometries.org.locationtech.jts.shape org.locationtech.jts.shape.random org.locationtech.jts.triangulate Classes to compute Delaunay triangulations.org.locationtech.jts.triangulate.quadedge Classes to implement a topological subdivision of quadeges, to support creating triangulations and Voronoi diagrams.org.locationtech.jts.util Contains support classes for the Java Topology Suite.org.locationtech.jtsexample.geom org.locationtech.jtstest.function org.locationtech.jtstest.testbuilder org.locationtech.jtstest.testbuilder.geom org.locationtech.jtstest.testbuilder.io.shapefile org.locationtech.jtstest.testbuilder.model org.locationtech.jtstest.testbuilder.topostretch org.locationtech.jtstest.testbuilder.ui org.locationtech.jtstest.testbuilder.ui.tools -
-
Uses of Envelope in org.locationtech.jts.algorithm
Fields in org.locationtech.jts.algorithm declared as Envelope Modifier and Type Field Description private Envelope
RectangleLineIntersector. rectEnv
Methods in org.locationtech.jts.algorithm with parameters of type Envelope Modifier and Type Method Description static Coordinate
InteriorPointArea. centre(Envelope envelope)
Returns the centre point of the envelope.Constructors in org.locationtech.jts.algorithm with parameters of type Envelope Constructor Description RectangleLineIntersector(Envelope rectEnv)
Creates a new intersector for the given query rectangle, specified as anEnvelope
. -
Uses of Envelope in org.locationtech.jts.algorithm.match
Methods in org.locationtech.jts.algorithm.match with parameters of type Envelope Modifier and Type Method Description static double
HausdorffSimilarityMeasure. diagonalSize(Envelope env)
-
Uses of Envelope in org.locationtech.jts.geom
Fields in org.locationtech.jts.geom declared as Envelope Modifier and Type Field Description protected Envelope
Geometry. envelope
The bounding box of thisGeometry
.Methods in org.locationtech.jts.geom that return Envelope Modifier and Type Method Description protected abstract Envelope
Geometry. computeEnvelopeInternal()
Returns the minimum and maximum x and y values in thisGeometry
, or a nullEnvelope
if thisGeometry
is empty.protected Envelope
GeometryCollection. computeEnvelopeInternal()
protected Envelope
LineString. computeEnvelopeInternal()
protected Envelope
Point. computeEnvelopeInternal()
protected Envelope
Polygon. computeEnvelopeInternal()
static Envelope
CoordinateArrays. envelope(Coordinate[] coordinates)
Computes the envelope of the coordinates.Envelope
CoordinateSequence. expandEnvelope(Envelope env)
Expands the givenEnvelope
to include the coordinates in the sequence.Envelope
DefaultCoordinateSequence. expandEnvelope(Envelope env)
Deprecated.Envelope
Geometry. getEnvelopeInternal()
Gets anEnvelope
containing the minimum and maximum x and y values in thisGeometry
.Envelope
Envelope. intersection(Envelope env)
Computes the intersection of twoEnvelope
s.Methods in org.locationtech.jts.geom with parameters of type Envelope Modifier and Type Method Description boolean
Envelope. contains(Envelope other)
Tests if theEnvelope other
lies wholely inside thisEnvelope
(inclusive of the boundary).boolean
Envelope. covers(Envelope other)
Tests if theEnvelope other
lies wholely inside thisEnvelope
(inclusive of the boundary).double
Envelope. distance(Envelope env)
Computes the distance between this and anotherEnvelope
.Envelope
CoordinateSequence. expandEnvelope(Envelope env)
Expands the givenEnvelope
to include the coordinates in the sequence.Envelope
DefaultCoordinateSequence. expandEnvelope(Envelope env)
Deprecated.void
Envelope. expandToInclude(Envelope other)
Enlarges thisEnvelope
so that it contains theother
Envelope.OctagonalEnvelope
OctagonalEnvelope. expandToInclude(Envelope env)
void
Envelope. init(Envelope env)
Initialize anEnvelope
from an existing Envelope.static Coordinate[]
CoordinateArrays. intersection(Coordinate[] coordinates, Envelope env)
Extracts the coordinates which intersect anEnvelope
.Envelope
Envelope. intersection(Envelope env)
Computes the intersection of twoEnvelope
s.boolean
Envelope. intersects(Envelope other)
Check if the region defined byother
intersects the region of thisEnvelope
.boolean
Envelope. overlaps(Envelope other)
Deprecated.Use #intersects instead.Geometry
GeometryFactory. toGeometry(Envelope envelope)
Creates aGeometry
with the same extent as the given envelope.Constructors in org.locationtech.jts.geom with parameters of type Envelope Constructor Description Envelope(Envelope env)
Create anEnvelope
from an existing Envelope.OctagonalEnvelope(Envelope env)
Creates a new null bounding octagon bounding anEnvelope
-
Uses of Envelope in org.locationtech.jts.geom.impl
Methods in org.locationtech.jts.geom.impl that return Envelope Modifier and Type Method Description Envelope
CoordinateArraySequence. expandEnvelope(Envelope env)
Envelope
PackedCoordinateSequence.Double. expandEnvelope(Envelope env)
Envelope
PackedCoordinateSequence.Float. expandEnvelope(Envelope env)
Methods in org.locationtech.jts.geom.impl with parameters of type Envelope Modifier and Type Method Description Envelope
CoordinateArraySequence. expandEnvelope(Envelope env)
Envelope
PackedCoordinateSequence.Double. expandEnvelope(Envelope env)
Envelope
PackedCoordinateSequence.Float. expandEnvelope(Envelope env)
-
Uses of Envelope in org.locationtech.jts.geomgraph
Fields in org.locationtech.jts.geomgraph declared as Envelope Modifier and Type Field Description private Envelope
Edge. env
Methods in org.locationtech.jts.geomgraph that return Envelope Modifier and Type Method Description Envelope
Edge. getEnvelope()
-
Uses of Envelope in org.locationtech.jts.index
Methods in org.locationtech.jts.index with parameters of type Envelope Modifier and Type Method Description void
SpatialIndex. insert(Envelope itemEnv, java.lang.Object item)
Adds a spatial item with an extent specified by the givenEnvelope
to the indexjava.util.List
SpatialIndex. query(Envelope searchEnv)
Queries the index for all items whose extents intersect the given searchEnvelope
Note that some kinds of indexes may also return objects which do not in fact intersect the query envelope.void
SpatialIndex. query(Envelope searchEnv, ItemVisitor visitor)
Queries the index for all items whose extents intersect the given searchEnvelope
, and applies anItemVisitor
to them.boolean
SpatialIndex. remove(Envelope itemEnv, java.lang.Object item)
Removes a single item from the tree. -
Uses of Envelope in org.locationtech.jts.index.chain
Fields in org.locationtech.jts.index.chain declared as Envelope Modifier and Type Field Description private Envelope
MonotoneChain. env
Methods in org.locationtech.jts.index.chain that return Envelope Modifier and Type Method Description Envelope
MonotoneChain. getEnvelope()
Methods in org.locationtech.jts.index.chain with parameters of type Envelope Modifier and Type Method Description private void
MonotoneChain. computeSelect(Envelope searchEnv, int start0, int end0, MonotoneChainSelectAction mcs)
void
MonotoneChain. select(Envelope searchEnv, MonotoneChainSelectAction mcs)
Determine all the line segments in the chain whose envelopes overlap the searchEnvelope, and process them. -
Uses of Envelope in org.locationtech.jts.index.kdtree
Methods in org.locationtech.jts.index.kdtree that return Envelope Modifier and Type Method Description Envelope
KdTree.BestMatchVisitor. queryEnvelope()
Methods in org.locationtech.jts.index.kdtree with parameters of type Envelope Modifier and Type Method Description java.util.List
KdTree. query(Envelope queryEnv)
Performs a range search of the points in the index.void
KdTree. query(Envelope queryEnv, java.util.List result)
Performs a range search of the points in the index.void
KdTree. query(Envelope queryEnv, KdNodeVisitor visitor)
Performs a range search of the points in the index and visits all nodes found.private void
KdTree. queryNode(KdNode currentNode, Envelope queryEnv, boolean odd, KdNodeVisitor visitor)
-
Uses of Envelope in org.locationtech.jts.index.quadtree
Fields in org.locationtech.jts.index.quadtree declared as Envelope Modifier and Type Field Description private Envelope
Key. env
private Envelope
Node. env
Methods in org.locationtech.jts.index.quadtree that return Envelope Modifier and Type Method Description static Envelope
Quadtree. ensureExtent(Envelope itemEnv, double minExtent)
Ensure that the envelope for the inserted item has non-zero extents.Envelope
Key. getEnvelope()
Envelope
Node. getEnvelope()
Methods in org.locationtech.jts.index.quadtree with parameters of type Envelope Modifier and Type Method Description void
NodeBase. addAllItemsFromOverlapping(Envelope searchEnv, java.util.List resultItems)
private void
Quadtree. collectStats(Envelope itemEnv)
private void
Key. computeKey(int level, Envelope itemEnv)
void
Key. computeKey(Envelope itemEnv)
return a square envelope containing the argument envelope, whose extent is a power of two and which is based at a power of 2static int
Key. computeQuadLevel(Envelope env)
static Node
Node. createExpanded(Node node, Envelope addEnv)
static Node
Node. createNode(Envelope env)
static Envelope
Quadtree. ensureExtent(Envelope itemEnv, double minExtent)
Ensure that the envelope for the inserted item has non-zero extents.NodeBase
Node. find(Envelope searchEnv)
Returns the smallest existing node containing the envelope.Node
Node. getNode(Envelope searchEnv)
Returns the subquad containing the envelope searchEnv.static int
NodeBase. getSubnodeIndex(Envelope env, double centrex, double centrey)
Gets the index of the subquad that wholly contains the given envelope.void
Quadtree. insert(Envelope itemEnv, java.lang.Object item)
void
Root. insert(Envelope itemEnv, java.lang.Object item)
Insert an item into the quadtree this is the root of.private void
Root. insertContained(Node tree, Envelope itemEnv, java.lang.Object item)
insert an item which is known to be contained in the tree rooted at the given QuadNode root.protected boolean
Node. isSearchMatch(Envelope searchEnv)
protected abstract boolean
NodeBase. isSearchMatch(Envelope searchEnv)
protected boolean
Root. isSearchMatch(Envelope searchEnv)
java.util.List
Quadtree. query(Envelope searchEnv)
Queries the tree and returns items which may lie in the given search envelope.void
Quadtree. query(Envelope searchEnv, ItemVisitor visitor)
Queries the tree and visits items which may lie in the given search envelope.boolean
NodeBase. remove(Envelope itemEnv, java.lang.Object item)
Removes a single item from this subtree.boolean
Quadtree. remove(Envelope itemEnv, java.lang.Object item)
Removes a single item from the tree.void
NodeBase. visit(Envelope searchEnv, ItemVisitor visitor)
private void
NodeBase. visitItems(Envelope searchEnv, ItemVisitor visitor)
Constructors in org.locationtech.jts.index.quadtree with parameters of type Envelope Constructor Description Key(Envelope itemEnv)
Node(Envelope env, int level)
-
Uses of Envelope in org.locationtech.jts.index.strtree
Methods in org.locationtech.jts.index.strtree with parameters of type Envelope Modifier and Type Method Description private static double
STRtree. centreX(Envelope e)
private static double
STRtree. centreY(Envelope e)
void
STRtree. insert(Envelope itemEnv, java.lang.Object item)
Inserts an item having the given bounds into the tree.java.lang.Object
STRtree. nearestNeighbour(Envelope env, java.lang.Object item, ItemDistance itemDist)
Finds the item in this tree which is nearest to the givenObject
, usingItemDistance
as the distance metric.java.lang.Object[]
STRtree. nearestNeighbour(Envelope env, java.lang.Object item, ItemDistance itemDist, int k)
Finds k items in this tree which are the top k nearest neighbors to the givenitem
, usingitemDist
as the distance metric.java.util.List
STRtree. query(Envelope searchEnv)
Returns items whose bounds intersect the given envelope.void
STRtree. query(Envelope searchEnv, ItemVisitor visitor)
Returns items whose bounds intersect the given envelope.boolean
STRtree. remove(Envelope itemEnv, java.lang.Object item)
Removes a single item from the tree. -
Uses of Envelope in org.locationtech.jts.noding.snapround
Fields in org.locationtech.jts.noding.snapround declared as Envelope Modifier and Type Field Description private Envelope
HotPixel. safeEnv
Methods in org.locationtech.jts.noding.snapround that return Envelope Modifier and Type Method Description Envelope
HotPixel. getSafeEnvelope()
Returns a "safe" envelope that is guaranteed to contain the hot pixel. -
Uses of Envelope in org.locationtech.jts.operation.buffer
Fields in org.locationtech.jts.operation.buffer declared as Envelope Modifier and Type Field Description private Envelope
BufferSubgraph. env
Methods in org.locationtech.jts.operation.buffer that return Envelope Modifier and Type Method Description Envelope
BufferSubgraph. getEnvelope()
Computes the envelope of the edges in the subgraph. -
Uses of Envelope in org.locationtech.jts.operation.distance
Methods in org.locationtech.jts.operation.distance that return Envelope Modifier and Type Method Description Envelope
FacetSequence. getEnvelope()
-
Uses of Envelope in org.locationtech.jts.operation.distance3d
Methods in org.locationtech.jts.operation.distance3d that return Envelope Modifier and Type Method Description Envelope
AxisPlaneCoordinateSequence. expandEnvelope(Envelope env)
Methods in org.locationtech.jts.operation.distance3d with parameters of type Envelope Modifier and Type Method Description Envelope
AxisPlaneCoordinateSequence. expandEnvelope(Envelope env)
-
Uses of Envelope in org.locationtech.jts.operation.predicate
Fields in org.locationtech.jts.operation.predicate declared as Envelope Modifier and Type Field Description private Envelope
EnvelopeIntersectsVisitor. rectEnv
private Envelope
GeometryContainsPointVisitor. rectEnv
private Envelope
RectangleContains. rectEnv
private Envelope
RectangleIntersects. rectEnv
private Envelope
RectangleIntersectsSegmentVisitor. rectEnv
Constructors in org.locationtech.jts.operation.predicate with parameters of type Envelope Constructor Description EnvelopeIntersectsVisitor(Envelope rectEnv)
-
Uses of Envelope in org.locationtech.jts.operation.union
Methods in org.locationtech.jts.operation.union with parameters of type Envelope Modifier and Type Method Description private Geometry
CascadedPolygonUnion. extractByEnvelope(Envelope env, Geometry geom, java.util.List disjointGeoms)
private Geometry
CascadedPolygonUnion. unionUsingEnvelopeIntersection(Geometry g0, Geometry g1, Envelope common)
Unions two polygonal geometries, restricting computation to the envelope intersection where possible. -
Uses of Envelope in org.locationtech.jts.operation.valid
Fields in org.locationtech.jts.operation.valid declared as Envelope Modifier and Type Field Description private Envelope
IndexedNestedRingTester. totalEnv
-
Uses of Envelope in org.locationtech.jts.shape
Fields in org.locationtech.jts.shape declared as Envelope Modifier and Type Field Description protected Envelope
GeometricShapeBuilder. extent
Methods in org.locationtech.jts.shape that return Envelope Modifier and Type Method Description Envelope
GeometricShapeBuilder. getExtent()
Envelope
GeometricShapeBuilder. getSquareExtent()
Methods in org.locationtech.jts.shape with parameters of type Envelope Modifier and Type Method Description void
GeometricShapeBuilder. setExtent(Envelope extent)
-
Uses of Envelope in org.locationtech.jts.shape.random
Methods in org.locationtech.jts.shape.random with parameters of type Envelope Modifier and Type Method Description protected Coordinate
RandomPointsBuilder. createRandomCoord(Envelope env)
-
Uses of Envelope in org.locationtech.jts.triangulate
Fields in org.locationtech.jts.triangulate declared as Envelope Modifier and Type Field Description private Envelope
VoronoiDiagramBuilder. clipEnv
private Envelope
ConformingDelaunayTriangulator. computeAreaEnv
private Envelope
VoronoiDiagramBuilder. diagramEnv
Methods in org.locationtech.jts.triangulate that return Envelope Modifier and Type Method Description private static Envelope
ConformingDelaunayTriangulator. computeVertexEnvelope(java.util.Collection vertices)
static Envelope
DelaunayTriangulationBuilder. envelope(java.util.Collection coords)
Computes theEnvelope
of a collection ofCoordinate
s.Methods in org.locationtech.jts.triangulate with parameters of type Envelope Modifier and Type Method Description private static Geometry
VoronoiDiagramBuilder. clipGeometryCollection(Geometry geom, Envelope clipEnv)
void
VoronoiDiagramBuilder. setClipEnvelope(Envelope clipEnv)
Sets the envelope to clip the diagram to. -
Uses of Envelope in org.locationtech.jts.triangulate.quadedge
Fields in org.locationtech.jts.triangulate.quadedge declared as Envelope Modifier and Type Field Description private Envelope
QuadEdgeSubdivision. frameEnv
Methods in org.locationtech.jts.triangulate.quadedge that return Envelope Modifier and Type Method Description Envelope
QuadEdgeSubdivision. getEnvelope()
Gets the envelope of the Subdivision (including the frame).Methods in org.locationtech.jts.triangulate.quadedge with parameters of type Envelope Modifier and Type Method Description private void
QuadEdgeSubdivision. createFrame(Envelope env)
Constructors in org.locationtech.jts.triangulate.quadedge with parameters of type Envelope Constructor Description QuadEdgeSubdivision(Envelope env, double tolerance)
Creates a new instance of a quad-edge subdivision based on a frame triangle that encloses a supplied bounding box. -
Uses of Envelope in org.locationtech.jts.util
Methods in org.locationtech.jts.util that return Envelope Modifier and Type Method Description Envelope
GeometricShapeFactory.Dimensions. getEnvelope()
Methods in org.locationtech.jts.util with parameters of type Envelope Modifier and Type Method Description void
GeometricShapeFactory.Dimensions. setEnvelope(Envelope env)
void
GeometricShapeFactory. setEnvelope(Envelope env)
-
Uses of Envelope in org.locationtech.jtsexample.geom
Methods in org.locationtech.jtsexample.geom that return Envelope Modifier and Type Method Description Envelope
ExtendedCoordinateSequence. expandEnvelope(Envelope env)
Methods in org.locationtech.jtsexample.geom with parameters of type Envelope Modifier and Type Method Description Envelope
ExtendedCoordinateSequence. expandEnvelope(Envelope env)
-
Uses of Envelope in org.locationtech.jtstest.function
Fields in org.locationtech.jtstest.function declared as Envelope Modifier and Type Field Description static Envelope
FunctionsUtil. DEFAULT_ENVELOPE
Methods in org.locationtech.jtstest.function that return Envelope Modifier and Type Method Description static Envelope
FunctionsUtil. getEnvelopeOrDefault(Geometry g)
Methods in org.locationtech.jtstest.function with parameters of type Envelope Modifier and Type Method Description private static AffineTransformation
AffineTransformationFunctions. viewportTrans(Envelope srcEnv, Envelope viewEnv)
-
Uses of Envelope in org.locationtech.jtstest.testbuilder
Methods in org.locationtech.jtstest.testbuilder with parameters of type Envelope Modifier and Type Method Description void
GeometryEditPanel. zoom(Envelope zoomEnv)
-
Uses of Envelope in org.locationtech.jtstest.testbuilder.geom
Fields in org.locationtech.jtstest.testbuilder.geom declared as Envelope Modifier and Type Field Description private Envelope
GeometryBoxDeleter.BoxDeleteComponentOperation. env
private Envelope
GeometryBoxDeleter.BoxDeleteVertexOperation. env
Methods in org.locationtech.jtstest.testbuilder.geom with parameters of type Envelope Modifier and Type Method Description static Geometry
GeometryBoxDeleter. delete(Geometry geom, Envelope env)
private static Geometry
GeometryBoxDeleter. deleteComponents(Geometry geom, Envelope env)
private static Geometry
GeometryBoxDeleter. deleteVertices(Geometry geom, Envelope env)
static double
EnvelopeUtil. maxExtent(Envelope env)
static double
EnvelopeUtil. minExtent(Envelope env)
Constructors in org.locationtech.jtstest.testbuilder.geom with parameters of type Envelope Constructor Description BoxDeleteComponentOperation(Envelope env)
BoxDeleteVertexOperation(Envelope env)
-
Uses of Envelope in org.locationtech.jtstest.testbuilder.io.shapefile
Fields in org.locationtech.jtstest.testbuilder.io.shapefile declared as Envelope Modifier and Type Field Description private Envelope
ShapefileHeader. bounds
Methods in org.locationtech.jtstest.testbuilder.io.shapefile that return Envelope Modifier and Type Method Description Envelope
ShapefileHeader. getBounds()
-
Uses of Envelope in org.locationtech.jtstest.testbuilder.model
Fields in org.locationtech.jtstest.testbuilder.model declared as Envelope Modifier and Type Field Description private Envelope
GeometryStretcherView. maskEnv
Methods in org.locationtech.jtstest.testbuilder.model that return Envelope Modifier and Type Method Description Envelope
GeometryEditModel. getEnvelope()
Envelope
GeometryEditModel. getEnvelopeAll()
Envelope
GeometryEditModel. getEnvelopeResult()
Methods in org.locationtech.jtstest.testbuilder.model with parameters of type Envelope Modifier and Type Method Description void
GeometryStretcherView. setEnvelope(Envelope maskEnv)
-
Uses of Envelope in org.locationtech.jtstest.testbuilder.topostretch
Fields in org.locationtech.jtstest.testbuilder.topostretch declared as Envelope Modifier and Type Field Description private Envelope
StretchedVertexFinder. limitEnv
private Envelope
TopologyStretcher.VertexInMaskCountCoordinateFilter. mask
Methods in org.locationtech.jtstest.testbuilder.topostretch with parameters of type Envelope Modifier and Type Method Description private static boolean
StretchedVertexFinder. contains(Envelope env, Coordinate p0, Coordinate p1)
private java.util.List
TopologyStretcher. extractLineStrings(Geometry[] geom, Envelope mask)
static java.util.List
StretchedVertexFinder. findNear(java.util.Collection linestrings, double tolerance, Envelope mask)
int
TopologyStretcher. numVerticesInMask(Envelope mask)
Geometry[]
TopologyStretcher. stretch(double nearnessTol, double stretchDistance, Envelope mask)
Constructors in org.locationtech.jtstest.testbuilder.topostretch with parameters of type Envelope Constructor Description StretchedVertexFinder(java.util.Collection linestrings, double tolerance, Envelope limitEnv)
VertexInMaskCountCoordinateFilter(Envelope mask)
-
Uses of Envelope in org.locationtech.jtstest.testbuilder.ui
Fields in org.locationtech.jtstest.testbuilder.ui declared as Envelope Modifier and Type Field Description private Envelope
Viewport. viewEnvInModel
Methods in org.locationtech.jtstest.testbuilder.ui that return Envelope Modifier and Type Method Description private Envelope
Viewport. computeEnvelopeInModel()
Envelope
Viewport. getModelEnv()
Envelope
Viewport. getViewEnv()
Methods in org.locationtech.jtstest.testbuilder.ui with parameters of type Envelope Modifier and Type Method Description boolean
Viewport. intersectsInModel(Envelope env)
void
Viewport. zoom(Envelope zoomEnv)
-
Uses of Envelope in org.locationtech.jtstest.testbuilder.ui.tools
Methods in org.locationtech.jtstest.testbuilder.ui.tools that return Envelope Modifier and Type Method Description protected Envelope
BoxBandTool. getEnvelope()
Gets the envelope of the indicated rectangle, in model coordinates.
-