From 3b9d72b5e56f7c1da34593cc85c83e059f239409 Mon Sep 17 00:00:00 2001 From: Jack Wines Date: Fri, 7 Jun 2024 05:03:02 -0400 Subject: [PATCH] correct README examples for new paths --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fb582a8..ff384fe 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Makes a [voronoi diagram](https://en.wikipedia.org/wiki/Voronoi_diagram) and fil #### with nix ``` -nix run --experimental-features "nix-command flakes" ".#" -- --minDistance 0.02 --input examples/birds-eye-view.png --output output.jpeg +nix run --experimental-features "nix-command flakes" ".#" -- --minDistance 0.02 --input examples/inputs/birds-eye-view.png --output output.jpeg ``` #### with cabal @@ -24,6 +24,6 @@ Install [cabal & ghc](https://www.haskell.org/ghcup/) if you don't have them. ``` cabal update -cabal run image-triangles -- --minDistance 0.02 --input examples/birds-eye-view.png --output output.jpeg +cabal run image-triangles -- --minDistance 0.02 --input examples/inputs/birds-eye-view.png --output output.jpeg ```