Whitespace changes only.

This commit is contained in:
Marc Jansen
2012-06-22 16:11:17 +02:00
parent 5a3dad9326
commit 1456e234e2
2 changed files with 7 additions and 7 deletions
+5 -5
View File
@@ -1,17 +1,17 @@
goog.provide('ol.geom.Geometry'); goog.provide('ol.geom.Geometry');
goog.require('ol.geom.IGeometry'); goog.require('ol.geom.IGeometry');
goog.require('ol.Bounds'); goog.require('ol.Bounds');
/** /**
* Creates ol.Geometry objects. * Creates ol.Geometry objects.
* *
* @export * @export
* @implements {ol.geom.IGeometry} * @implements {ol.geom.IGeometry}
* @constructor * @constructor
*/ */
ol.geom.Geometry = function() { ol.geom.Geometry = function() {
/** /**
* @private * @private
* @type {ol.Bounds|undefined} * @type {ol.Bounds|undefined}
@@ -37,7 +37,7 @@ ol.geom.Geometry.prototype.setBounds = function(bounds) {
/** /**
* Returns the centroid of the geometry. * Returns the centroid of the geometry.
* *
* @returns {ol.geom.Point} The centroid of the geometry. * @returns {ol.geom.Point} The centroid of the geometry.
*/ */
ol.geom.Geometry.prototype.getCentroid = function() { ol.geom.Geometry.prototype.getCentroid = function() {
@@ -48,7 +48,7 @@ ol.geom.Geometry.prototype.getCentroid = function() {
/** /**
* Returns the area of the geometry. * Returns the area of the geometry.
* *
* @returns {number} The area of the geometry. * @returns {number} The area of the geometry.
*/ */
ol.geom.Geometry.prototype.getArea = function() { ol.geom.Geometry.prototype.getArea = function() {
+2 -2
View File
@@ -4,9 +4,9 @@ goog.provide('ol.geom.IGeometry');
//goog.require('ol.Bounds'); //goog.require('ol.Bounds');
/** /**
* Interface for geometry classes forcing ol.geom.* classes to implement * Interface for geometry classes forcing ol.geom.* classes to implement
* expected functionality. * expected functionality.
* *
* @interface * @interface
*/ */
ol.geom.IGeometry = function(){}; ol.geom.IGeometry = function(){};