POV-Ray : Newsgroups : povray.general : blob modeller : Re: blob modeller Server Time
8 Aug 2024 10:24:36 EDT (-0400)
  Re: blob modeller  
From: Greg M  Johnson
Date: 16 Jan 2001 15:05:45
Message: <3A64A836.CD720309@my-dejanews.com>
Jonathan Rafael Ghiglia wrote:

> Where can I find a good blob modeller for Windows?
> Thanks a lot.

Here's a start. You'll have to tweak it to fit your object, etc. To
speed up don't use complex textures on your object, us 160X120 no AA or
less...

#declare Jonathansblob=
    blob{
    threshold...
    sphere.....
    }

object{Jonathansblob}

object {Jonathansblob
    rotate<0,90,0>
    translate 5*x
    }
object{Jonathansblob
    rotate<-90,0,0>
    translate 5*y
    }

#declare nx=0;
#while(nx<10)
 #declare ny=0;
 #while(ny<10)
  sphere{<(nx-5)*1,(ny-5)*1,0>,0.05 pigment{Red}finish{ambient 1}}
#declare ny=ny+1;
#end
#declare nx=nx+1;
#end


Post a reply to this message

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