Mark applyTransform as part of the API for all geometries

This commit is contained in:
Tim Schaub
2014-05-02 13:24:04 -06:00
parent e448f100fd
commit 0b8f1e8944
2 changed files with 1 additions and 1 deletions

View File

@@ -163,6 +163,7 @@ 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.
* @todo api
*/
ol.geom.Geometry.prototype.applyTransform = goog.abstractMethod;

View File

@@ -242,7 +242,6 @@ ol.geom.SimpleGeometry.prototype.setLayout =
/**
* @inheritDoc
* @todo api
*/
ol.geom.SimpleGeometry.prototype.applyTransform = function(transformFn) {
if (!goog.isNull(this.flatCoordinates)) {