satdump/src-core/common/widgets/value_plot.h

16 lines
245 B
C
Raw Permalink Normal View History

2022-03-28 11:51:13 +02:00
#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);
};
}