Download-Bot in Povray

Nikolaus Gradwohl2010-06-19T09:55:00+00:00

Today's inspirational theme for 30daysofcreativity is robots. So I made a new virtual version of my downloadbot - this time in povray

povray_bot

read more ...

Povray image

Nikolaus Gradwohl2008-07-24T05:58:00+00:00

While coding my little blob-demo in processing i realized that i had not used povray for a very long time. i have almost forgotten its syntax. Thats why i coded this littly guy :-)

littleguy

#include "colors.inc"

background { color Black }
camera { location <2, 2, -3> look_at  <-1, 1,  2> }
plane { <0,1,0>, -4 texture { pigment { color White }}}

// BODY
sphere { <0,-2,2>,2 texture { pigment { color Green }}}

// HEAD
sphere { <0, 1, 2>, 1 texture { pigment { color Pink }}}

// HAT
sphere { <0, 1.5, 2>, .75 texture { pigment { color Yellow }}}
sphere { <0, 2, 2>,   .5  texture { pigment { color Yellow }}}
sphere { <0, 2.5, 2>, .25 texture { pigment { color Yellow }}}

// NOSE
cone { <0, 1, 2>, 0.25, <0,1,.5>, 0 texture { pigment { color Red }}}

// EYES
sphere { <-0.3,1.3,1.1>,0.1 texture { pigment { color Blue }}}
sphere { <0.3,1.3,1.1>,0.1 texture { pigment { color Blue }}}

light_source {
    <20, 15, -10>
    color White
    area_light <5,0,0>, <0,5,0>, 10,10
    adaptive 1
    jitter
}
read more ...

blob demo

Nikolaus Gradwohl2008-07-21T05:57:00+00:00

And here comes another processing sketch. This time i tried to implement a 2D version of the Blob function from povray.

read more ...