Simplify import path in ol/geom/

This commit is contained in:
Frederic Junod
2018-10-12 14:42:12 +02:00
parent 53c2be0c7a
commit caf11a71f2
15 changed files with 80 additions and 80 deletions
+3 -3
View File
@@ -2,9 +2,9 @@
* @module ol/geom/Point
*/
import {createOrUpdateFromCoordinate, containsXY} from '../extent.js';
import GeometryType from '../geom/GeometryType.js';
import SimpleGeometry from '../geom/SimpleGeometry.js';
import {deflateCoordinate} from '../geom/flat/deflate.js';
import GeometryType from './GeometryType.js';
import SimpleGeometry from './SimpleGeometry.js';
import {deflateCoordinate} from './flat/deflate.js';
import {squaredDistance as squaredDx} from '../math.js';
/**