POV-Ray : Newsgroups : povray.binaries.images : blood : Re: blood Server Time
4 Oct 2024 21:13:19 EDT (-0400)
  Re: blood  
From: portelli
Date: 23 Feb 1999 00:09:30
Message: <36D263DF.E4D9AE74@pilot.msu.edu>
all right I made the blood cell now is there a way to randomly place it
in a cylinder?  I kindof adapted the macro FCWS to do it, but it does
not conform to a cylinder yet.  I still do not understand the code
entirely

portelli wrote:
> 
>         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.