pickover++

This commit is contained in:
tth
2022-02-16 00:18:35 +01:00
parent 8ac3e43c6b
commit 8905cf858b
4 changed files with 81 additions and 6 deletions

34
Fraktalism/plotpick.sh Executable file
View File

@@ -0,0 +1,34 @@
#!/bin/bash
ASCFILE="nuage.asc"
IMAGE="pick3d.png"
make pickover
if [ $? -ne 0 ] ; then
echo
echo "Make error " $?
exit 1
fi
./pickover foo.pgm > $ASCFILE
if [ $? -ne 0 ] ; then
echo
echo "Pickover error " $?
exit 1
fi
gnuplot << __EOC__
set term png size 1024,768
set output "${IMAGE}"
set title "3D Pickover"
splot "$ASCFILE" with dots
__EOC__