You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
330 B
19 lines
330 B
#ifndef THERMALDATARENDERER_H
|
|
#define THERMALDATARENDERER_H
|
|
|
|
#include <QObject>
|
|
#include <QVector>
|
|
#include <QColor>
|
|
|
|
class ThermalDataRenderer
|
|
{
|
|
bool direct = false;
|
|
QVector<QColor> renderBuffer;
|
|
float minValue = 0.0f;
|
|
float maxValue = 0.0f;
|
|
public:
|
|
ThermalDataRenderer();
|
|
};
|
|
|
|
#endif // THERMALDATARENDERER_H
|