@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
45 lines (41 loc) • 641 B
JavaScript
export class JpegFrame {
/**
*
* @type {boolean}
*/
extended = false;
/**
*
* @type {boolean}
*/
progressive = false;
/**
*
* @type {number}
*/
precision = 8;
/**
*
* @type {number}
*/
scanLines = 0;
/**
*
* @type {number}
*/
samplesPerLine = 0;
maxH = 0;
maxV = 0;
mcusPerLine = 0;
mcusPerColumn = 0;
/**
*
* @type {Object<JpegFrameComponent>}
*/
components = {};
/**
*
* @type {number[]}
*/
componentsOrder = [];
}