Blame view

src/ParamOutputImpl/Plot/Matrix.hh 443 Bytes
5953671a   Erdogan Furkan   For now
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * 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;

34c311b3   Erdogan Furkan   Smooting works
28
29
30
31
32
	class Histo2DMatrixGrid : public  MatrixGrid
	{
		
	};

5953671a   Erdogan Furkan   For now
33
34
} /* namespace plot */
#endif /* MATRIX_HH_ */