contourmap icon indicating copy to clipboard operation
contourmap copied to clipboard

Compute contour lines (isolines) for any 2D data in Go.

Results 2 contourmap issues
Sort by recently updated
recently updated
newest added

For example this 2x2 grid. ``` func main() { width := 2 height := 2 grid := make([]float64, width*height) for i := 0; i < width*height; i++ { grid[i] =...