POV-Ray : Newsgroups : povray.newusers : math : Re: math Server Time
6 Sep 2024 12:15:28 EDT (-0400)
  Re: math  
From: Alain CULOS
Date: 11 Apr 1998 08:18:42
Message: <352F5FA2.EDFBAC69@bigfoot.com>
Hi Ross,

You can :

1/ define a starting point, i.e. :
#declare x=0

2/ do your loop until an end point, i.e. :
#while (x <= 10)

3/ do your calculation, i.e. :
#declare y=3*x+1

4/ define your object based on this calculation, i.e. :
sphere {<x, y, 0> 5}

5/ do something to keep x incrementing, i.e. :
#declare x=x+1

6/ close your loop :
#end

And you have it.
Hope this helps,
Al.


Ross Litscher wrote:

> I have a mathematical equation and I was wondering if it is possible to
> do something like put one sphere at each vlaue or something. simple
> example would be y = 3x + 1 or something... and have a while loop with
> values from 0 to 10 being put in. how, if possible, would I do this?

--
ANTI SPAM / ANTI ARROSAGE COMMERCIAL :

To answer me, please take out the Z from my address.


Post a reply to this message

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