run with bangpath

main
jebba 2022-01-15 11:31:47 -07:00
parent 078f106e42
commit e7d7434186
1 changed files with 4 additions and 4 deletions

View File

@ -31,16 +31,16 @@ HOWTO use.
``` ```
# Process netlist with live view. # Process netlist with live view.
python3 pcb.py --v 1 examples/netlist.pcb | python3 view.py ./pcb.py --v 1 examples/netlist.pcb | ./view.py
# Process netlist, redirect to "anim" file. # Process netlist, redirect to "anim" file.
python3 pcb.py --v 1 examples/netlist.pcb > anim ./pcb.py --v 1 examples/netlist.pcb > anim
# View "anim" file using aggDraw. # View "anim" file using aggDraw.
python3 view.py anim ./view.py anim
# View "anim" file using matplotlib # View "anim" file using matplotlib
python3 view_mpl.py anim ./view_mpl.py anim
``` ```