Skip to content

Commit

Permalink
Consistent executable path in README.md
Browse files Browse the repository at this point in the history
These commands run (from the source directory; would commands as run
from the build directory be clearer?) for me as-is (after the testbed
executable has been built) now.
  • Loading branch information
roystgnr committed Dec 1, 2021
1 parent 4fd0287 commit 4581f1f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,19 @@ Running the Examples

Load data points from a file:
```
p2t <filename> <center_x> <center_y> <zoom>
build/testbed/p2t <filename> <center_x> <center_y> <zoom>
```
Random distribution of points inside a constrained box:
```
p2t random <num_points> <box_radius> <zoom>
build/testbed/p2t random <num_points> <box_radius> <zoom>
```
Examples:
```
./build/p2t testbed/data/dude.dat 300 500 2
./build/p2t testbed/data/nazca_monkey.dat 0 0 9
build/testbed/p2t testbed/data/dude.dat 300 500 2
build/testbed/p2t testbed/data/nazca_monkey.dat 0 0 9
./build/p2t random 10 100 5.0
./build/p2t random 1000 20000 0.025
build/testbed/p2t random 10 100 5.0
build/testbed/p2t random 1000 20000 0.025
```

References
Expand Down

0 comments on commit 4581f1f

Please sign in to comment.