Matrix.hh 443 Bytes
/*
 * Range.hh
 *
 *  Created on: 20 nov. 2013
 *      Author: CS
 */

#ifndef MATRIX_HH_
#define MATRIX_HH_

#include <vector>

namespace plot {

	/*
	 * @brief Type used to define a matrix grid
	 */
	struct GridPart
	{
		double x[2];
		double y[2];
		double value;
		double isColorIndex;
	};

	typedef std::vector<GridPart> MatrixGrid;

	class Histo2DMatrixGrid : public  MatrixGrid
	{
		
	};

} /* namespace plot */
#endif /* MATRIX_HH_ */