POV-Ray : Newsgroups : povray.general : pigment_pattern vs. "regular" pattern : Re: pigment_pattern vs. "regular" pattern Server Time
3 Aug 2024 16:24:59 EDT (-0400)
  Re: pigment_pattern vs. "regular" pattern  
From: Shay
Date: 2 Jan 2004 15:25:28
Message: <3ff5d3b8$1@news.povray.org>
"Steely" <rob### [at] hamburgde> wrote in message
news:pan### [at] hamburgde...
|
| Do I expect too much from this feature (pigment functions)?
| Or is there some "magic thing" for working with it, and I
| didn't found it?

The power comes when you combine two or more function pigments or a
function pigment along with float functions together.

a simple example:
#local f_bozo=function{
  pigment{
    bozo
  }
}

#local f_bozo2=function{
  f_bozo(sin(x),y*x,cos(z)).gray
}

#local Pig = pigment{
  function{
    f_bozo2(x,y,z)
  }
  scale .1
}

<insert (menu) the orthographic camera scene and apply this pigment to
the box to see it>

 -Shay


Post a reply to this message

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