Move inflateCoordinates into ol.geom.flat

This commit is contained in:
Tom Payne
2013-11-12 12:22:29 +01:00
parent dc1ad7bb83
commit 16e5f238d2
8 changed files with 80 additions and 80 deletions

View File

@@ -40,7 +40,7 @@ ol.geom.Polygon.prototype.containsXY = function(x, y) {
* @return {ol.geom.RawPolygon} Coordinates.
*/
ol.geom.Polygon.prototype.getCoordinates = function() {
return ol.geom.inflateCoordinatess(
return ol.geom.flat.inflateCoordinatess(
this.flatCoordinates, 0, this.ends_, this.stride);
};