POV-Ray : Newsgroups : povray.binaries.images : blob question, 5k gif : Re: blob question, 5k gif Server Time
2 Oct 2024 12:22:53 EDT (-0400)
  Re: blob question, 5k gif  
From: David Heys
Date: 2 May 2000 16:07:09
Message: <390f356d@news.povray.org>
It'd help to see the code. Beyond that, I'd suggest playing around with the
threshold a bit, or increasing the number of components between the
base-point and the top. Maybe run them through a loop. ie:

#declare YTran=0;
#declare Scaler=1;

blob {
 threshold 0.65
 #while (YTran <= 10)
  sphere {0,1,1
   scale Scaler
   translate YTran*y
  }
  #declare YTran=YTran+0.25;
  #declare Scaler=Scaler+0.1;
 #end
 pigment {rgb <0.65,0.8,0.65>}
}

The more components you use, the smoother the transition.

David


Post a reply to this message

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