POV-Ray : Newsgroups : povray.general : Specularity mapping : Re: Specularity mapping Server Time
13 Aug 2024 15:25:40 EDT (-0400)
  Re: Specularity mapping  
From:
Date: 18 Aug 1998 12:56:41
Message: <wb90kmuvws.fsf@tycho.intervett.no>
[Tim Glover <tgl### [at] nettallycom>]
| I've considered this, but texture mapping is (like all textures in
| POVRAY) a procedural thing.  It's got to conform to (some)
| pre-determined mathematical formula.
| What I'm looking for is more like a bump map, but instead of perturbing
| the surface normals, the function perturbs the specularity.

// RTFM once in a while, would you?

#declare lowspec =
texture{
  pigment{color rgb <1,1,1>}
  finish{specularity 0}
}

#declare hispec =
texture{
  pigment{color rgb <1,1,1>}
  finish{specularity 1}
}


sphere{ <0,0,0>,1 
  texture {
     spotted
     texture_map{
       [0.2 texture lowspec]
       [0.8 texture hispec]
     } 
  }
}

Now all you're missing is a light source and a camera. :)

-- 
A penny for your thoughts.
Mine are more expensive.


Post a reply to this message

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