We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e2407e commit 9695562Copy full SHA for 9695562
src/main/java/com/esri/core/geometry/Envelope2D.java
@@ -272,8 +272,11 @@ public boolean isIntersectingNE(Envelope2D other) {
272
}
273
274
/**
275
- * Checks if this envelope intersects the other.
276
- * @return True if this envelope intersects the other.
+ * Intersects this envelope with the other and stores result in this
+ * envelope.
277
+ *
278
+ * @return True if this envelope intersects the other, otherwise sets this
279
+ * envelope to empty state and returns False.
280
*/
281
public boolean intersect(Envelope2D other) {
282
if (isEmpty() || other.isEmpty())
0 commit comments