|
|
"Sven Littkowski" <sven [] jamaica-focus [] com> schreef in bericht
news:47ee8cf5@news.povray.org...
> Hi.
>
> Who knows the right parameters to get a good satin or silk finish?
>
Sven, I think you should have a look at:
http://runevision.com/3d/povgoodies/ and download the Fur Texture. I
believe that this would make a decent silk or satin, provided you make some
adjustment perhaps.
Good luck,
Thomas
Post a reply to this message
|
|
|
|
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
|
|