POV-Ray : Newsgroups : povray.general : Finishes: Satin or Silk : Re: Finishes: Satin or Silk Server Time
30 Jul 2024 22:28:08 EDT (-0400)
  Re: Finishes: Satin or Silk  
From: Thomas de Groot
Date: 30 Mar 2008 09:50:00
Message: <47efa898@news.povray.org>
This is quick and dirty approximation but might be a start to something 
better:

#declare SilkTex =
   material {
      texture {
         pigment_pattern {
               wrinkles
               pigment_map {
                  [0.4
                     color rgb <1.0, 1.0, 1.0>
                  ]
                  [0.6
                     color rgb <0.0, 0.0, 0.0>
                  ]
               }
               scale  <0.2, 1.0, 0.2>
         }
         texture_map {
            [0.0
               pigment {
                  color rgb <0.45, 0.25, 0.75>
               }
               finish {
                  ambient 0.0
                  specular 0.8
               }
            ]
            [1.0
               pigment {
                  color rgb <0.45, 0.25, 0.75>
               }
               finish {
                  ambient 0.0
                  specular 0.05
               }
            ]
         }
      }
   }


Thomas


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.