Interface SpatialPartition.EquivalenceRelation
-
- Enclosing class:
- SpatialPartition
public static interface SpatialPartition.EquivalenceRelation
An interface for a function to compute an equivalence relation. An equivalence relation must be symmetric, reflexive and transitive. Examples areintersects
orwithinDistance
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isEquivalent(int i, int j)
Tests whether two geometry items are equivalent to each other under the relation.
-