aoc21-9 3d print of cave height map

from blog blog, | ↗ original
AoC 2021 day 9 - 3D print of cave height map After solving the puzzle of day 9 about a cave with basins and heights from 0 to 9, we1 thought about 3D printing the input as height map. Go program I generated an STL model using the puzzle input as list of lines: func renderSTL(input []string) { filename := "day09.stl" // list of all generated...