From cdcf3ef5a4e014ab3fb2eb034a59d89e22feb959 Mon Sep 17 00:00:00 2001 From: Marc Jansen Date: Wed, 20 Jun 2012 12:06:55 +0200 Subject: [PATCH] remove the coordinate mixin. --- src/ol/mixins/coordinate.js | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/ol/mixins/coordinate.js diff --git a/src/ol/mixins/coordinate.js b/src/ol/mixins/coordinate.js deleted file mode 100644 index 599592302a..0000000000 --- a/src/ol/mixins/coordinate.js +++ /dev/null @@ -1,31 +0,0 @@ -goog.provide('ol.mixins.coordinate'); -goog.require('goog.object'); - -goog.object.extend(ol.mixins.coordinate, { - - getX : function() { - return this.x_; - }, - - getY : function() { - return this.y_; - }, - - getZ : function() { - return this.z_; - }, - - setX : function(x) { - this.x_ = x; - return this; - }, - - setY : function(y) { - this.y_ = y; - return this; - }, - setZ: function(z) { - this.z_ = z; - return this; - } -});