Skip to content

Commit

Permalink
disjoint
Browse files Browse the repository at this point in the history
  • Loading branch information
clarisma committed Apr 13, 2024
1 parent 10fe5e3 commit 97bd321
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion doc/migrating.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ Version 0.2 uses a simpler, more intuitive API. It does, however, introduce some
---------------|---------------------
`contains()` | `containing()`
`crosses()` | `crossing()`
`disjoint()` | `disjointFrom()`
`intersects()` | `intersecting()`
`overlaps()` | `overlapping()`
`touches()` | `touching()`
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/geodesk/feature/Features.java
Original file line number Diff line number Diff line change
Expand Up @@ -356,17 +356,17 @@ default Features crossing(PreparedGeometry prepared)
return select(new CrossesFilter(prepared));
}

default Features disjointFrom(Feature feature)
default Features disjoint(Feature feature)
{
return select(new DisjointFilter(feature));
}

default Features disjointFrom(Geometry geom)
default Features disjoint(Geometry geom)
{
return select(new DisjointFilter(geom));
}

default Features disjointFrom(PreparedGeometry prepared)
default Features disjoint(PreparedGeometry prepared)
{
return select(new DisjointFilter(prepared));
}
Expand Down

0 comments on commit 97bd321

Please sign in to comment.