// KALEIDOSCOPE / Hexagon 2 '05.03 // by Tsutomu HIGO URL: http://www.asahi-net.or.jp/~nj2t-hg/ #version 3.6; global_settings { max_trace_level 20 assumed_gamma 2.2 } #declare R1 = seed(52); camera { location <0.2, 0.5, -30> look_at <0, 0, 0> angle 40 } union { intersection { plane { z, 1 pigment { wrinkles color_map{ [0.2 color rgb <1, 0.2, 0>] [0.3 color rgb <1, 1, 1>] [0.4 color rgb <0, 0, 1>] [0.5 color rgb <0.5, 0.65, 1>] [0.7 color rgb <1, 1, 1>] [1 color rgb <0, 0.8, 1>] } turbulence 0.50 scale <1, 0.3, 0.3> rotate <180*rand(R1), 180*rand(R1), 180*rand(R1)> } finish { ambient 1 diffuse 1 reflection 0.5 specular 0.8 phong 0.5 brilliance 1 } no_shadow } intersection { plane { y, 0 } plane { y, 1 rotate z*120 } plane { y, 1 rotate z*180 } plane { y, 1 rotate z*240 } pigment { color rgb <0, 0, 1> } finish { ambient 0.1 diffuse 0 reflection 0.9 } no_shadow } } rotate z*90 }