mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-02-12 14:20:48 +01:00
15 lines
251 B
C
15 lines
251 B
C
|
#ifndef HILLSHADING_H
|
||
|
#define HILLSHADING_H
|
||
|
|
||
|
#include <QImage>
|
||
|
#include "map/matrix.h"
|
||
|
|
||
|
class HillShading
|
||
|
{
|
||
|
public:
|
||
|
static QImage render(const Matrix &m, quint8 alpha = 64,
|
||
|
double azimuth = 315, double elevation = 25);
|
||
|
};
|
||
|
|
||
|
#endif // HILLSHADING_H
|