POV-Ray : Newsgroups : povray.binaries.images : blood : blood Server Time
4 Oct 2024 21:11:08 EDT (-0400)
  blood  
From: portelli
Date: 21 Feb 1999 23:11:57
Message: <36D104CE.C5CC3FDE@pilot.msu.edu>
I'm trying to make a blood cell and I am not very successful.  First I
tried using a circle of blobs, using a while loop.  I worked sort of,
but not good enough.  I'm not to good with splines but I'm going to try
and do that.  Here is my blob code:

#declare b = 0;
blob
{
        threshold .6
        #while ( b<20)
                sphere { < .6, 0, 0> .55, 1 rotate <0, b/20*360, 0> }   
               // sphere { < 0, 0, 0> .3, 2 }                 
                
                #declare b = b+1;
        #end
        pigment { color Red }  
        rotate <-40, 0, 0> 
}
The second sphere does not appear to add  to the blob.   Why?


Post a reply to this message

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