Page 3 of 3

Posted: Mon Apr 09, 2007 11:44 am
by Psychophanta
PB wrote:...Any better tip to fix this?
Of course:
look at the line:

Code: Select all

If Angle<0 Or Angle>4/5*#PI:Break:EndIf
As you can see the loop is broken if 4/5*#PI is reached.
If for example you write #PI/2 instead of 4/5*#PI, then when plane is just horizontal it bounds. :)

Posted: Mon Apr 09, 2007 12:43 pm
by PB
Ah, thanks... that's how I prefer it. :)