w3d
Version:
Framework to create 3D web pages.
27 lines (19 loc) • 348 B
JavaScript
;
const Object3D = require('./object3d.js');
class Body extends Object3D {
constructor () {
super();
this._ht3d = {
tag: 'body',
class: '',
id: ''
};
this.makeStyle();
this._isBody = true;
}
align () {}
get availableSpace () {
return this.outerSize;
}
}
module.exports = Body;