Blame view

src/ParamOutputImpl/Plot/Matrix.hh 386 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
28
29
/*
 * 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;

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