geostat/heat.h

20 wiersze
454 B
C
Czysty Zwykły widok Historia

2019-09-08 16:42:10 +00:00
#pragma once
#include "cache.h"
#include "maps.h"
2019-09-08 16:42:10 +00:00
#include <set>
#include <string>
class Heat {
private:
const Map* mp;
2019-09-08 16:42:10 +00:00
public:
explicit Heat(const Map* m);
2019-09-08 16:42:10 +00:00
void generate(const std::string& filename, const pCaches& points, int stamp_size, const std::string& theme = "soft");
void generate_path(const std::string& filename, const Date_Caches& sorted);
void generate_anim(const std::string& filename, const Date_Caches& sorted, int dot_size);
2019-09-08 16:42:10 +00:00
};