mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
16 lines
No EOL
245 B
C++
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);
|
|
};
|
|
} |