POV-Ray : Newsgroups : povray.general : Algorithm-approach to eliminate intersections... : Re: Algorithm-approach to eliminate intersections... Server Time
6 Aug 2024 08:14:16 EDT (-0400)
  Re: Algorithm-approach to eliminate intersections...  
From:
Date: 21 Jun 2002 08:32:38
Message: <d476hu0rjtm4872ohkmfrhr66ohfu4ucvv@4ax.com>

wrote:
>  #local X=Interpolate(rand(Generator),0,1,Min.x,Max.x,1);
>  #local Y=Interpolate(rand(Generator),0,1,Min.y,Max.y,1);

and of course above could be much speed up with

  #local X=adj_range(rand(Generator),Min.x,Max.x);
  #local Y=adj_range(rand(Generator),Min.y,Max.y);

ABX


Post a reply to this message

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