blob: 83656a029699bc710d758097297dc2ce96fdebcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package org.traccar.geofence;
import java.text.ParseException;
public abstract class GeofenceGeometry {
public abstract boolean containsPoint(double latitude, double longitude);
public abstract String toWkt();
public abstract void fromWkt(String wkt) throws ParseException;
}
|