remove the coordinate mixin.

This commit is contained in:
Marc Jansen
2012-06-20 12:06:55 +02:00
parent a4a90b18b7
commit cdcf3ef5a4

View File

@@ -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;
}
});