Rename transform to applyTransform for geometries

This commit is contained in:
Tim Schaub
2014-05-02 09:21:56 -06:00
parent 7b4c240a5a
commit 4f9968d106
8 changed files with 10 additions and 9 deletions
+2 -1
View File
@@ -159,10 +159,11 @@ ol.geom.Geometry.prototype.getType = goog.abstractMethod;
/**
* Apply a transform function to the geometry. Modifies the geometry in place.
* @function
* @param {ol.TransformFunction} transformFn Transform.
*/
ol.geom.Geometry.prototype.transform = goog.abstractMethod;
ol.geom.Geometry.prototype.applyTransform = goog.abstractMethod;
/**