mirror of
https://gitlab.com/Trygve/contour-creator.git
synced 2025-10-30 08:20:45 +00:00
838 B
838 B
| title | author | ||
|---|---|---|---|
|
|
Output of our program:
Marching squares
The logical flow of our program
int main(int argc, const char* argv[])
{
const char* filepath = argv[1];
HeightMap map(filepath);
map.blur(0.8)
auto lines = create_lines(&map, 5);
write_output_file(cellmaps, "out.geojson", &map);
}
Performance
| Time | |
|---|---|
| 12 threads | 41s |
| 1 thread | 116s |
