Point, linestring, and linearring coordinates as Float32Array

This commit is contained in:
Tim Schaub
2013-01-18 15:57:48 -07:00
parent 278d32061f
commit fd0a5f3622
13 changed files with 372 additions and 18 deletions

View File

@@ -1,7 +1,22 @@
goog.provide('ol.geom.Coordinate');
goog.provide('ol.geom.CoordinateArray');
goog.provide('ol.geom.Geometry');
/**
* @interface
*/
ol.geom.Geometry = function() {};
/**
* @typedef {Array.<number>}
*/
ol.geom.Coordinate;
/**
* @typedef {Array.<ol.geom.Coordinate>}
*/
ol.geom.CoordinateArray;