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