Whitespace changes only.
This commit is contained in:
@@ -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() {
|
||||||
|
|||||||
@@ -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(){};
|
||||||
|
|||||||
Reference in New Issue
Block a user