Skip to content

Commit

Permalink
Fix intersects with gc input
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornharrtell committed Apr 19, 2024
1 parent c30d150 commit ceb3ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/locationtech/jts/operation/relate/RelateOp.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default class RelateOp extends GeometryGraphOperation {
const r = false
for (let i = 0; i < g1.getNumGeometries(); i++)
for (let j = 0; j < g2.getNumGeometries(); j++)
if (g1.getGeometryN(i).intersects(g2.getGeometryN(j)))
if (RelateOp.intersects(g1.getGeometryN(i), g2.getGeometryN(j)))
return true


Expand Down

0 comments on commit ceb3ab7

Please sign in to comment.