Erosion and dilasion by square successfully tested.
[Faustine.git] / interpretor / faust-0.9.47mr3 / tools / faust2appls / faust2graph
1 #!/bin/bash
2 for f in $@; do
3 faust -vec -tg $f -o /dev/null
4 dot -Tpdf $f.dot -o $f.graph.pdf
5 rm $f.dot
6 done
7