SIngle stipple feature

This commit is contained in:
Matt McWilliams 2021-11-30 10:20:06 -05:00
parent 84228c8559
commit 96b4a47397
1 changed files with 17 additions and 1 deletions

View File

@ -44,6 +44,7 @@ IMAGES=""
stipple () {
png="${1}"
frame="${2}"
filename=`basename "${png}"`
name=`echo "${filename}" | cut -d'.' -f1`
num=`echo "${name}" | awk -F'_' '{print $(NF)}'`
@ -84,10 +85,25 @@ stipple () {
fi
}
if [[ "${SINGLE}" != "" ]]; then
i=0;
echo "Rendering a single frame, #${SINGLE}"
#files in dir
for png in "${INPUT}/"*.png ; do
if [[ ${i} -eq ${SINGLE} ]]; then
stipple "${png}" ${i}
break
fi
i=$((i+1))
done
exit
fi
i=0;
#files in dir
for png in "${INPUT}/"*.png ; do
stipple "${png}"
stipple "${png}" ${i}
i=$((i+1))
done