ds/impl/BumpSerie.js

/**
 * @fileoverview This file contains internal data structures used in DsClient
 *
 * @author anders.rejdebrant@spark-vision.com (Anders Rejdebrant)
 */

goog.provide('spv.ds.impl.BumpSerie');




/**
 * @struct
 * @constructor
 * @param {string} id
 * @param {string} model_id
 * @param {number} index
 * @param {number} first_frame
 * @param {number} last_frame
 * @param {Array.<number>} frames_order
 * @param {string} extension
 * @param {number} image_width
 * @param {number} image_output_width
 * @param {number} image_height
 * @param {number} image_output_height
 */
spv.ds.impl.BumpSerie = function(
		id,
		model_id,
		index,
		first_frame,
		last_frame,
		frames_order,
		extension,
		image_width,
		image_output_width,
		image_height,
		image_output_height)
{
	/**
	 * @type {string}
	 */
	this.id = id;

	/**
	 * @type {string}
	 */
	this.model_id = model_id;

	/**
	 * @type {number}
	 */
	this.index = index;

	/**
	 * @type {number}
	 */
	this.first_frame = first_frame;

	/**
	 * @type {number}
	 */
	this.last_frame = last_frame;

	/**
	 * @type {Array.<number>}
	 */
	this.frames_order = frames_order;

	/**
	 * @type {string}
	 */
	this.extension = extension;

	/**
	 * @type {number}
	 */
	this.image_width = image_width;

	/**
	 * @type {number}
	 */
	this.image_output_width = image_output_width;

	/**
	 * @type {number}
	 */
	this.image_height = image_height;

	/**
	 * @type {number}
	 */
	this.image_output_height = image_output_height;
};