add GeometryBuffer.addPoint(Point)

This commit is contained in:
Hannes Janetzek 2014-02-07 14:14:07 +01:00
parent 83d36fe04b
commit bbaa19ef7b

View File

@ -308,4 +308,8 @@ public class GeometryBuffer {
throw new IllegalArgumentException("not cleared " + m + "<>" + type);
}
public void addPoint(Point p) {
addPoint((float) p.x, (float) p.y);
}
}