Rename _ol_geom_Geometry_ to Geometry

This commit is contained in:
Tim Schaub
2017-12-14 08:58:46 -07:00
parent ac7985a5ad
commit 87e665d60e
9 changed files with 39 additions and 39 deletions

View File

@@ -4,7 +4,7 @@
import {inherits} from '../index.js';
import _ol_functions_ from '../functions.js';
import {createOrUpdateFromFlatCoordinates, getCenter} from '../extent.js';
import _ol_geom_Geometry_ from '../geom/Geometry.js';
import Geometry from '../geom/Geometry.js';
import _ol_geom_GeometryLayout_ from '../geom/GeometryLayout.js';
import _ol_geom_flat_transform_ from '../geom/flat/transform.js';
import _ol_obj_ from '../obj.js';
@@ -21,7 +21,7 @@ import _ol_obj_ from '../obj.js';
*/
var _ol_geom_SimpleGeometry_ = function() {
_ol_geom_Geometry_.call(this);
Geometry.call(this);
/**
* @protected
@@ -43,7 +43,7 @@ var _ol_geom_SimpleGeometry_ = function() {
};
inherits(_ol_geom_SimpleGeometry_, _ol_geom_Geometry_);
inherits(_ol_geom_SimpleGeometry_, Geometry);
/**