1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-02-07 12:05:14 +01:00
GPXSee/src/map/hillshading.h

15 lines
280 B
C
Raw Normal View History

2024-02-21 08:49:09 +01:00
#ifndef HILLSHADING_H
#define HILLSHADING_H
#include <QImage>
#include "map/matrix.h"
class HillShading
{
public:
2024-05-20 19:17:27 +02:00
static QImage render(const MatrixD &m, int extend, quint8 alpha = 96,
2024-05-20 20:21:29 +02:00
double z = 0.6, double azimuth = 315, double elevation = 45);
2024-02-21 08:49:09 +01:00
};
#endif // HILLSHADING_H