Interface OShapeOperation
- All Known Implementing Classes:
OShapeOperationImpl
public interface OShapeOperation
Created by Enrico Risa on 29/09/15.
-
Method Summary
Modifier and TypeMethodDescriptionbooleancontains(org.locationtech.spatial4j.shape.Shape shape, org.locationtech.spatial4j.shape.Shape shape1) doubledistance(org.locationtech.spatial4j.shape.Shape shapes1, org.locationtech.spatial4j.shape.Shape s2) booleanintersect(org.locationtech.spatial4j.shape.Shape s1, org.locationtech.spatial4j.shape.Shape s2) booleanisEquals(org.locationtech.spatial4j.shape.Shape shape, org.locationtech.spatial4j.shape.Shape shape1) booleanisWithInDistance(org.locationtech.spatial4j.shape.Shape s1, org.locationtech.spatial4j.shape.Shape s2, Double dist) booleanwithin(org.locationtech.spatial4j.shape.Shape shape, org.locationtech.spatial4j.shape.Shape shape1)
-
Method Details
-
distance
double distance(org.locationtech.spatial4j.shape.Shape shapes1, org.locationtech.spatial4j.shape.Shape s2) -
isWithInDistance
boolean isWithInDistance(org.locationtech.spatial4j.shape.Shape s1, org.locationtech.spatial4j.shape.Shape s2, Double dist) -
intersect
boolean intersect(org.locationtech.spatial4j.shape.Shape s1, org.locationtech.spatial4j.shape.Shape s2) -
within
boolean within(org.locationtech.spatial4j.shape.Shape shape, org.locationtech.spatial4j.shape.Shape shape1) -
contains
boolean contains(org.locationtech.spatial4j.shape.Shape shape, org.locationtech.spatial4j.shape.Shape shape1) -
isEquals
boolean isEquals(org.locationtech.spatial4j.shape.Shape shape, org.locationtech.spatial4j.shape.Shape shape1)
-