has been done in the NaturalDocs branch back to trunk. Thanks to everyone who helped out in making this happen. (I could list people, but the list would be long, and I'm already mentally on vacation.) git-svn-id: http://svn.openlayers.org/trunk/openlayers@3545 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
25 lines
692 B
JavaScript
25 lines
692 B
JavaScript
/* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license.
|
|
* See http://svn.openlayers.org/trunk/openlayers/repository-license.txt
|
|
* for the full text of the license. */
|
|
|
|
/**
|
|
* @requires OpenLayers/Geometry.js
|
|
*
|
|
* Class: OpenLayers.Geometry.Surface
|
|
*/
|
|
OpenLayers.Geometry.Surface = OpenLayers.Class.create();
|
|
OpenLayers.Geometry.Surface.prototype =
|
|
OpenLayers.Class.inherit(OpenLayers.Geometry, {
|
|
|
|
/**
|
|
* Constructor: OpenLayers.Geometry.Surface
|
|
*
|
|
*/
|
|
initialize: function() {
|
|
OpenLayers.Geometry.prototype.initialize.apply(this, arguments);
|
|
},
|
|
|
|
/** @final @type String */
|
|
CLASS_NAME: "OpenLayers.Geometry.Surface"
|
|
});
|