Rename _ol_geom_SimpleGeometry_ to SimpleGeometry

This commit is contained in:
Tim Schaub
2017-12-14 09:03:51 -07:00
parent 64a0d40361
commit fca8b13ddd
14 changed files with 60 additions and 60 deletions
+3 -3
View File
@@ -8,7 +8,7 @@ import GeometryLayout from '../geom/GeometryLayout.js';
import GeometryType from '../geom/GeometryType.js';
import LinearRing from '../geom/LinearRing.js';
import Point from '../geom/Point.js';
import _ol_geom_SimpleGeometry_ from '../geom/SimpleGeometry.js';
import SimpleGeometry from '../geom/SimpleGeometry.js';
import _ol_geom_flat_area_ from '../geom/flat/area.js';
import _ol_geom_flat_closest_ from '../geom/flat/closest.js';
import _ol_geom_flat_contains_ from '../geom/flat/contains.js';
@@ -37,7 +37,7 @@ import _ol_math_ from '../math.js';
*/
var Polygon = function(coordinates, opt_layout) {
_ol_geom_SimpleGeometry_.call(this);
SimpleGeometry.call(this);
/**
* @type {Array.<number>}
@@ -85,7 +85,7 @@ var Polygon = function(coordinates, opt_layout) {
};
inherits(Polygon, _ol_geom_SimpleGeometry_);
inherits(Polygon, SimpleGeometry);
/**