POV-Ray : Newsgroups : povray.binaries.images : Interesting radial pattern : Interesting radial pattern Server Time
20 May 2024 07:09:39 EDT (-0400)
  Interesting radial pattern  
From: Bald Eagle
Date: 4 Sep 2023 18:20:00
Message: <web.64f657b1e70e474b1f9dae3025979125@news.povray.org>
I was off coding some experimental patterns, and came across this one by
accident.

This looke dlike one of those things that one would probably look for, and maybe
ought be in the distribution.

#version 3.8;
global_settings {assumed_gamma 1.0}
default {finish {diffuse 1}}

//#include "functions.inc"

camera {
 location <0, 0, -20>
 right     x*image_width/image_height
 up y
 look_at <0, 0, 0>

}

light_source {<0,  0, -50> rgb 1.0}
sky_sphere {pigment {rgb 1}}

#declare fmod = function (T) {select (T, 1-mod(abs(T),1), mod(abs(T),1))}
#declare AngFreq = 7;
#declare Ang = function {atan2 (x, y)/(tau/AngFreq)}
#declare Ang2 = function {fmod (Ang(x, y, z))}
#declare Rad = function {sqrt (x*x+y*y)}

#declare Mixed = function {Rad (x,y,z) * Ang2(x,y,z)}

plane {z, 0 pigment {function {Mixed(x, y, z)} } }


Post a reply to this message


Attachments:
Download 'coolradialpattern1.png' (172 KB)

Preview of image 'coolradialpattern1.png'
coolradialpattern1.png


 

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