POV-Ray : Newsgroups : povray.general : Sepia Tones : Re: Sepia Tones Server Time
11 Aug 2024 17:16:15 EDT (-0400)
  Re: Sepia Tones  
From: Bob Hughes
Date: 5 Jun 1999 06:23:34
Message: <3758FA92.FA992B6@aol.com>
The sepia color is a guess but here's one way to get a similar effect with
POV-Ray alone:

//camera and filter box location
#declare LCX = 0;
#declare LCY = 0;
#declare LCZ = -10;

camera {
  location <LCX,LCY,LCZ>
  angle    67
  look_at  <0,0,0>
}

#declare SepiaContrast = 1.25; //higher is brighter, lower is darker
// negative numbers can be used
#declare SepiaSaturation = 0.125; //higher is less (also allows more
original color)

box {-1,1 //large camera angles seem okay with this
 pigment {rgbft<.8,.4,.2,SepiaContrast,SepiaSaturation>}
 finish {ambient 1 diffuse 0} //ambient 1 or 0, seems to be no difference
  translate <LCX,LCY,LCZ> //same as camera location
}
/* important thing to remember is to use the same transformations on both
camera and box */


Steven Jones wrote:
> 
> Does anyone know how to make a picture with sepia hues (e.g. the very
> first scene in Titanic)?

-- 
 omniVERSE: beyond the universe
  http://members.aol.com/inversez/homepage.htm
 mailto://inversez@aol.com?Subject=PoV-News


Post a reply to this message

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