swh:1:snp:0b6b327d179ef61b5b0cd24239e711840027f756
Raw File
Tip revision: ed82e2ebe5f14fa875cc3d0a2180c64980408e8f authored by Glen on 19 October 2016, 17:49:36 UTC
Update README.md
Tip revision: ed82e2e
GraphUtil.h
#pragma once

#include "render/DrawUtil.h"

class cGraphUtil
{
public:
	struct tBarPlot
	{
		double mMinVal;
		double mMaxVal;
		double mBaseVal;
		Eigen::VectorXd mVals;
		tVectorArr mColors;

		tBarPlot();
	};

	static void DrawBarPlot(const tBarPlot& bar_plot, const tVector& pos, const tVector& size);
};
back to top