POV-Ray : Newsgroups : povray.binaries.images : lace pattern : Re: lace pattern Server Time
12 Aug 2024 05:19:17 EDT (-0400)
  Re: lace pattern  
From: Anonymous
Date: 5 Jan 2004 20:07:36
Message: <3ffa0a58$1@news.povray.org>
"Tek" <tek### [at] evilsuperbraincom> wrote

> I was just messing around with repeating patterns and came up with this:
>
> #declare fA = 18; //change this from 0 - 360 to get various different
patterns
>
> pigment {
>   granite colour_map { [.1 rgb 1][.9 rgb 0] }
>
>   #local nCount = 0;
>   #while ( nCount < 10 )
>     rotate -fA*z
>     warp { repeat y flip y }
>     #local nCount = nCount + 1;
>   #end
> }

Very very nice! But to get the "right" colors:

...
granite colour_map { [.1 rgb 10] [.6 rgb <6,0,0>]  [.7 rgb 0] [.9 rgb -6] }
...

:)


Post a reply to this message

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