Spezielle Texturen


Neben den gezeigten, gibt es in POVRAY noch eine Reihe spezieller Pigmentierungen, von denen stellvertretend leopard gezeigt werden soll:


/* ........... */
plane {<0, 1, 0>, -1.2
    texture {
     pigment {
        leopard
        color_map {
            [ 0.2 color rgb <1.0, 0.5, 0.2>]
            [ 0.4 color rgb <0.8, 0.2, 0.4>]
            [ 0.6 color rgb <0.6, 0.8, 0.6>]
            [ 0.8 color rgb <0.4, 0.7, 0.8>]
            [ 1.0 color rgb <0.2, 0, 1.0>]
        }
      }

    }
}

sphere {<0, 0, 0>, 1
    texture {
        pigment {
            color rgb <1, 0, 0>
        }
        finish {
            phong 0.9
        }
    }
}