My old project for strange attractors
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

17 lines
323 B

ATTREXT=".attr"
CANVEXT=".canv"
ATTRPATH="attr/"
CANVPATH="canvas/"
cd $ATTRPATH
for FILE in `ls *$ATTREXT | sed -e 's/'$ATTREXT'$//'`
do
../bin/Debug/AwesomeAttractor -a ../$ATTRPATH$FILE$ATTREXT 500 ../$CANVPATH$FILE$CANVEXT 800 600 3
#Do other stuff with file
done
cd ..
zip -r canvae.zip $CANVPATH*$CANVEXT