satdump/src-core/common/widgets/value_plot.h
2022-03-28 11:51:13 +02:00

16 lines
No EOL
245 B
C++

#pragma once
#include "imgui/imgui.h"
#include "complex"
namespace widgets
{
class ValuePlotViewer
{
private:
float history[200];
public:
void draw(float value, float max, float min, std::string name);
};
}