POV-Ray : Newsgroups : povray.off-topic : rgb stuff that will hurt your brain : Re: rgb stuff that will hurt your brain Server Time
19 Apr 2024 16:22:03 EDT (-0400)
  Re: rgb stuff that will hurt your brain  
From: Cousin Ricky
Date: 27 Jun 2021 01:02:10
Message: <60d80652$1@news.povray.org>
On 2021-06-25 8:54 PM (-4), Bald Eagle wrote:
> 
> https://www.youtube.com/watch?v=wh4aWZRtTwU

Brown in context.  N.B. Pantone 448 C is srgb <74, 65, 42> / 255.

----------[BEGIN CODE]----------
#version 3.7;

global_settings { assumed_gamma 1 }
background { rgb 1 }
#default { finish { ambient 0 diffuse 0 emission 1 } }
camera
{ orthographic
  location <6, 4.5, -1>
  right 12.15 * x
  up 7.15 * y
}

#include "colors.inc"

#for (H, 0, 11)
  #for (L, 1, 7)
    box
    { 0.075, 0.925 translate <H, L, 0>
      #local C = CHSL2RGB (<H * 30, 1, L / 8>);
      pigment { srgbft C }
    }
  #end
#end
-----------[END CODE]-----------


Post a reply to this message


Attachments:
Download 'brown.png' (4 KB)

Preview of image 'brown.png'
brown.png


 

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