/*#include "colors.inc" background { color White } camera { location <1,-4,4> // location <-5,0,2> look_at <1,3,1> } */ sphere { <1.85,5.5,1.55>, 0.15 pigment { color rgb <1,0,0> } } /* x = 0.05 will show you the little sphere, x = 0.15 hides it */ /* cylinder { <0.5,0.05,-0.1>, <0.5,0.05,0.2>, 0.05 pigment { color rgb <0.9,0.9,0.9> } }*/ /* z = 0 will show you the little cylinder, z = 0.2 hides it */ cylinder { <0.5,0.5,-0.1>, <0.5,0.5,1.4>, 0.4 pigment { color rgb <0,1,1> } } cylinder { <1.5,0.5,-0.1>, <1.5,0.5,1.4>, 0.4 pigment { color rgb <0.9,1,1> } } cylinder { <0.5,1.5,-0.1>, <0.5,1.5,1.4>, 0.4 pigment { color rgb <0.8,0.9,1> } } cylinder { <1.5,1.5,-0.1>, <1.5,1.5,1.4>, 0.4 pigment { color rgb <0.7,0.8,1> } } cylinder { <0.5,2.5,-0.1>, <0.5,2.5,1.4>, 0.4 pigment { color rgb <0.6,0.7,1> } } cylinder { <1.5,2.5,-0.1>, <1.5,2.5,1.4>, 0.4 pigment { color rgb <0.5,0.6,1> } } cylinder { <0.5,3.5,-0.1>, <0.5,3.5,1.4>, 0.4 pigment { color rgb <0.4,0.5,1> } } cylinder { <1.5,3.5,-0.1>, <1.5,3.5,1.4>, 0.4 pigment { color rgb <0.3,0.4,1> } } cylinder { <0.5,4.5,-0.1>, <0.5,4.5,1.4>, 0.4 pigment { color rgb <0.2,0.3,1> } } cylinder { <1.5,4.5,-0.1>, <1.5,4.5,1.4>, 0.4 pigment { color rgb <0.1,0.2,1> } } cylinder { <0.5,5.5,-0.1>, <0.5,5.5,1.4>, 0.4 pigment { color rgb <0,0.1,1> } } cylinder { <1.5,5.5,-0.1>, <1.5,5.5,1.4>, 0.4 pigment { color rgb <0,0,1> } } //light_source { <-1,-4,4> color White }