OsmAnd/OsmAnd-java/src/main/java/net/osmand/data/QuadPoint.java
2018-06-15 15:24:05 +02:00

24 lines
No EOL
308 B
Java

package net.osmand.data;
public class QuadPoint {
public float x;
public float y;
public QuadPoint() {
}
public QuadPoint(float x, float y) {
this.x = x;
this.y = y;
}
public QuadPoint(QuadPoint a) {
this(a.x, a.y);
}
public void set(float x, float y) {
this.x = x;
this.y = y;
}
}