geostat/heat.h

19 wiersze
326 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:
Heat(const Map* m);
2019-09-08 16:42:10 +00:00
void generate(std::string filename, Caches& points, int stamp_size, std::string theme = "soft");
void generate_path(std::string filename, const Date_Caches& sorted);
2019-09-08 16:42:10 +00:00
};