obelisk.js
Version:
JavaScript Library for Building Pixel Isometric Element with HTML5 Canvas
43 lines (33 loc) • 640 B
JavaScript
/*jslint node: true*/
;
var AbstractDimension, p;
AbstractDimension = function () {
this.initialize();
};
p = AbstractDimension.prototype;
// public properties
/**
* The x Axis dimensions in 22.6 degrees coordinate
*/
p.xAxis = null;
/**
* The y Axis dimensions in 22.6 degrees coordinate
*/
p.yAxis = null;
/**
* The z Axis dimensions in 22.6 degrees coordinate
*/
p.zAxis = null;
/**
* Pyramid tall mode
*/
p.tall = false;
// constructor
p.initialize = function () {
return this;
};
// public methods
p.toString = function () {
return '[AbstractDimension]';
};
module.exports = AbstractDimension;