Home // Research // Teaching // Coding // Artwork

Artwork

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.

Baby Tux and Baby Gnu

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.

../_images/BabyTux.png ../_images/BabyTuxBlack.png ../_images/BabyTuxAlpha.png ../_images/BabyTuxSit.png ../_images/BabyTuxSitBlack.png ../_images/BabyTuxSitAlpha.png ../_images/BabyGnu.png ../_images/BabyGnuBlack.png ../_images/BabyGnuAlpha.png ../_images/BabyGnuTux.png ../_images/BabyGnuTuxBlack.png ../_images/BabyGnuTuxSoftRevolution-v1.png ../_images/GnuTuxSoftRevolution-v2.png ../_images/GnuTuxSoftRevolution-v2-Big.png ../_images/GnuTuxSoftRevolution-v2-Big.png

Sources for baby gnu/tux are available here (44Mo)

The Ancient Art of Go

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.

../_images/GoInTheMorning.png ../_images/Goban.png ../_images/Goban2.png ../_images/GoStone.png ../_images/GobanSmall.png ../_images/GobanWired.png

Some sources are available as macro files:

Gnome backgrounds

Here are some wallpapers related to gnome which is quite a nice desktop environment. You can find accompanying splash screens at gnomelook.org.

../_images/GnomeCloud.png ../_images/GnomeFlower.png ../_images/GnomePebble.png

Neuroscience

Here are some images related to neurosciences. Some have been used for conferences, journals and wikipedia.

../_images/CCN.png ../_images/Brain.png ../_images/neuron.png ../_images/NeuronSEM2.png ../_images/NeuronMatrix.png ../_images/NeuronSEM.png ../_images/NeuronTech.png ../_images/NeuronToon.png

Source for neuron is available as a svg file:

Miscellaneous

Here are some miscellaneous images.

../_images/Sphere.png ../_images/Chain.png ../_images/Soledad.png ../_images/PebbleStones.png ../_images/Mystery.png ../_images/Family.png ../_images/Glass.png ../_images/Ring.png ../_images/Planet.png

Some sources are available:


Thumbnails

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