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

15 lines
267 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-03-01 00:37:58 +01:00
static QImage render(const Matrix &m, quint8 alpha = 96, double z = 0.3,
2024-02-21 08:49:09 +01:00
double azimuth = 315, double elevation = 25);
};
#endif // HILLSHADING_H