POV-Ray : Newsgroups : povray.binaries.images : can't get blobjects to connect : Re: can't get blobjects to connect Server Time
18 Aug 2024 14:21:10 EDT (-0400)
  Re: can't get blobjects to connect  
From: Bryan Valencia
Date: 16 Apr 2001 16:46:23
Message: <3ADB5AB0.F6FF98A5@209software.com>
oops, here is the source


plane{y,0 pigment{color rgb .5} finish{reflection .2} normal{checker
.4}}
light_source{<-80,100,-90> color rgb 1}


#declare h=1;
#declare mh=100;

blob{threshold .1
#while (h<mh)
    #declare f=(mh-h)/mh;
    #declare a=sin(h)*5*f;
    #declare b=(h)/5;
    #declare c=cos(h)*5*f;
    sphere{<a,b,c>,f/2,f*20}
    #declare h=h+.5;
#end

    pigment{color rgb 1}

}


camera{location<0,5,-20> look_at<0,4,0>}

sky_sphere{pigment{color rgb<.5,.1,.8>}}


Post a reply to this message

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