POV-Ray : Newsgroups : povray.binaries.images : Tessellations : Re: Tessellations Server Time
1 Aug 2024 20:11:47 EDT (-0400)
  Re: Tessellations  
From: alphaQuad
Date: 18 Mar 2008 14:35:01
Message: <web.47e018b754e7baaebc412700@news.povray.org>
Christian Froeschlin <chr### [at] chrfrde> wrote:
> Russell Towle wrote:
>
>      pigment {color rgb <mod(i,3)/3, mod(i,5)/5, mod(i,7)/7>}


I have seen something like that before and it is the darker method

tex(<T[i].x,T[i].y,T[i].z,.9,.1>)


the brighter (not as dark) method would be:
#declare S1 = seed (2341);
#declare S2 = seed (5521);
#declare S3 = seed (134515);
tex(<rand(S3),rand(S2),rand(S1),.9,.1>)



in this image the random method is:

#declare T[i]=<mod(i,3)/3, mod(i,5)/5, mod(i,7)/7>;
tex(<T[i].x,T[i].y,T[i].z,.9,.1>)

as suggested; darker;


Post a reply to this message


Attachments:
Download 'spheroid_dome10.jpg' (66 KB)

Preview of image 'spheroid_dome10.jpg'
spheroid_dome10.jpg


 

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