Hi all,
While experimenting a bit with the SHA384 hash i came up
with the idea that the final checksum is ideal for graphics
usage, due to it's byte size.
With this little oneliner you can convert your full name
(or whatever) to sha384 checksum and get the output formatted
in decimal number pairs (x,y,z), so that you can use them as
point coordinates, to manually input them in MoI.
echo -n „Your full name here“ | shasum -a 384 | fold -w 2 | \
sed '$s/.$//;49,50d' | perl -lpe '$_=hex' | awk 'ORS=NR%3?RS:RS RS'
Once you have the coordinates you can then, as in my example create
a through point spline manually and sweep it.
This was a fun experiment and maybe it is useful somehow.
And i must admit i have never seen my full name as a spline...
P.S. if someone has a better idea for the output, so that it can
easily be read with MoI i would appreciate your input.
Regards
Stefan