// Dark blue sky style // Last edited on 1999-02-13 10:26:35 by stolfi // Defines // sib_sky_color_n = sky color at nadir // sib_sky_color_h = sky color at horizon // sib_sky_color_z = sky color at zenith // sib_sky_pigment = suitable for a sky_sphere #declare sib_sky_color_n = < 0.00, 0.00, 0.05 >; #declare sib_sky_color_h = < 0.18, 0.42, 0.90 >; #declare sib_sky_color_z = < 0.00, 0.02, 0.20 >; #declare sib_sky_pigment = pigment { gradient z color_map { [ 0.00 color rgb sib_sky_color_n ] [ 0.48 color rgb sib_sky_color_n ] [ 0.50 color rgb sib_sky_color_h ] [ 0.55 color rgb sib_sky_color_z ] [ 1.00 color rgb sib_sky_color_z ] } scale 2 translate -1 }