|
|
Hell, I had to paste both versions together to find the difference :P
I will never make a good proof-reader.
Margus
Thorsten Froehlich wrote:
>
> Fixed version:
>
> #declare RCon = 2.3;
> #declare XPos = 0.0;
> #declare ZPos = RCon-XPos;
> #while (XPos <= RCon)
> sphere {< XPos,0, ZPos>,.1}
> sphere {< XPos,0,-ZPos>,.1}
> sphere {<-XPos,0,-ZPos>,.1}
> sphere {<-XPos,0, ZPos>,.1}
> #declare XPos = XPos+.1;
> #declare ZPos = RCon-XPos;
> #end//while
Post a reply to this message
|
|