POV-Ray : Newsgroups : povray.binaries.images : N240SY0.0000001 : Re: N240SY0.0000001 Server Time
27 Jul 2024 12:21:55 EDT (-0400)
  Re: N240SY0.0000001  
From: yesbird
Date: 8 May 2024 06:50:51
Message: <663b590b@news.povray.org>
On 08/05/2024 08:02, ingo wrote:
> yesbird <sya### [at] gmailcom> wrote:
>> I like it - inspired by Malevich ?
> ... 
> Haha, no, more a "Bob Ross Happy Accident".

It looks like we are on the way to the modern art gallery.
I call this artwork "Spring in NY", guess it will be sold
for about $1.5-1.8 millions and I will by Meta Quest 3 then ...

------------------------------------------------------------------------
#version 3.7;
global_settings{ assumed_gamma 1.0 }
#default{ finish{ ambient 0.1 diffuse 0.9 }}
#include "math.inc"
#include "rand.inc"
#include "functions.inc"
#include "transforms.inc"

#declare Point = <0,0,0>;
#declare Stream = seed(7);
#declare N=240;
#declare arrNeighbours = array[N];
#for(I,0,N-1)
   #declare arrNeighbours[I] = VRand_On_Sphere(Stream)/2;
#end

blob{
   threshold .50
   sphere{Point,1,1}
   #for(I,0,N-1)
     #declare Neighbour = arrNeighbours[I];
     #declare Distance = vlength(Neighbour);
     #declare Normal = vnormalize(Neighbour);
     sphere{0,1,-0.8 scale <1,0.0000001, 1> Point_At_Trans(Normal) 
translate Normal * Distance * 2.8}
   #end
   pigment{rgb 1}
}

camera {
   perspective angle 22
   location  <0,0,-10>
   look_at   <0,0,  0>
}

light_source{< -300, 3000,   0> rgb <0.2, 2.3, 0.2>}
light_source{< 3000,  300,-500> rgb <0.0, 0.4, 0.4>}
light_source{<  300,-3000,   0> rgb <0.0, 0.1, 2.4>}
------------------------------------------------------------------------

--
YB


Post a reply to this message


Attachments:
Download 'ingo_01.png' (442 KB)

Preview of image 'ingo_01.png'
ingo_01.png


 

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