obj2gltf/lib/Image.js

19 lines
326 B
JavaScript
Raw Normal View History

2017-07-28 16:56:28 -04:00
'use strict';
module.exports = Image;
/**
* Stores image data and properties.
*
* @private
*/
function Image() {
this.transparent = false;
this.source = undefined;
this.extension = undefined;
this.path = undefined;
this.decoded = undefined;
this.width = undefined;
this.height = undefined;
}