sin_2.bmx 217 B

1234567891011121314151617
  1. SuperStrict
  2. Graphics 640,480
  3. Local radius:Int=80
  4. SetColor 0,255,255
  5. For Local t:Int=0 To 359 Step 4
  6. Plot Float(320+Sin(t)*radius), Float(240+Cos(t)*radius)
  7. Next
  8. Flip
  9. Repeat
  10. WaitKey()
  11. Until KeyDown(KEY_ESCAPE)