Unless stated otherwise, permission is granted to copy, distribute and/or modify these images under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
I originally created the Baby Tux in 2003 for my gnubiff software because I wanted to have some animation saying “you’ve got mail”. The result was a cute jumping baby tux that was made using constructive solid geometry (csg) and some macros borrowed from Rune S. Johansen and Chris Colefax. The render has been done using Povray, a great and free raytracer. Later, in 2005, I wanted to learn Blender so I tried to model the baby GNU and exported it to povray.
Sources for baby gnu/tux are available here (44Mo)
Here are some images related to the ancient art of go. They’ve been produced using povray and solid constructive geometry. The hardest part was certainly goban feet which possess a very peculiar shape.
Some sources are available as macro files:
Here are some wallpapers related to gnome which is quite a nice desktop environment. You can find accompanying splash screens at gnomelook.org.
Here are some images related to neurosciences. Some have been used for conferences, journals and wikipedia.
Source for neuron is available as a svg file:
Thumbnails have been created using the following script
#! /bin/bash
if [ $# -eq 0 ];then
echo "Usage: `basename $0` filename" >&2
exit 1
fi
density="1.5"
for file in $*; do
if [ -e "$file" ]; then
fullname=`basename $file`
basename=${fullname%%.[^.]*}
echo -n Processing $basename...
convert ${file} \
-size 128x128 \
-thumbnail '128x128>' \
-bordercolor white -border 6 \
-bordercolor grey60 -border 1 \
-background none -rotate 0 \
-background black \( +clone \
-shadow 60x4+4+4 -channel A -evaluate \
multiply ${density} +channel \) +swap \
-background none -flatten \
-depth 8 -quality 95 ${basename}.png
echo "done"
fi
done