MMBasic for Windows - alphas


Author Message
Michal
Senior Member

Joined: 02/02/2022
Location: Poland
Posts: 125
Posted: 08:35pm 17 Feb 2022      

Hi matherp,

I get such an error
[831] Arc x%,y%,x1%,y1%,els,ela,c%
Error : Radials

in the course of the execution of the following
 For i%=1 To 100
   x%=Rnd()*maxx
   y%=Rnd()*maxy
   x1%=Rnd()*maxx
   y1%=x1%+(Rnd()*30)
   if y1%=x1% then y1%=x1%+1
   c%=Rnd()*&hffffff
   els=rnd()*360 'random size
   ela=rnd()* 360 'random angle
   Arc x%,y%,x1%,y1%,els,ela,c%
 Next i%

Michal