Reference Talk:Potential Pattern

From POV-Wiki
Revision as of 18:02, 19 December 2016 by Clipka (talk | contribs) (Created page with " copied from the povray.beta-test newsgroup: ---- This version adds a new pigment pattern: pigment { user_defined { function { RED_FUNCTION }, funct...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

copied from the povray.beta-test newsgroup:


This version adds a new pigment pattern:

   pigment {
     user_defined {
       function { RED_FUNCTION },
       function { GREEN_FUNCTION },
       function { BLUE_FUNCTION },
       function { FILTER_FUNCTION },
       function { TRANSMIT_FUNCTION }
     }
   }

Each function is optional, in which case the corresponding component is set to 0. For example, the following sets the colour to rgbft <x,y,0,0,z>:

   pigment {
     user_defined {
       function { x },
       function { y },
       ,,
       function { z }
     }
   }


Aside from that, the version also includes the data container update as well as the transmission-based highlights/reflections knockout update.