mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
20 lines
No EOL
306 B
C++
20 lines
No EOL
306 B
C++
#pragma once
|
|
|
|
#include "imgui/imgui.h"
|
|
|
|
namespace widgets
|
|
{
|
|
class FFTPlot
|
|
{
|
|
private:
|
|
float *values;
|
|
int values_size;
|
|
|
|
public:
|
|
float scale_min, scale_max;
|
|
|
|
public:
|
|
FFTPlot(float *v, int size, float min, float max);
|
|
void draw(ImVec2 size);
|
|
};
|
|
} |