Advertisement
linesguy

sequence plotter

Feb 19th, 2020
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1.  
  2.  
  3. 3 acc = 0.1 : rem decrease for more accuracy, but not zero
  4. 4 xz = 10
  5. 5 yz = 1
  6.  
  7.  
  8.  
  9. 10 hgr2 : hcolor = 1
  10. 13 hplot 0,95 to 279,95 : hplot 139,0 to 139,191
  11. 19 hcolor = 3
  12. 20 gosub 100 : dx=140+n*xz:dy=95.5-y*yz : if dx>0 and dx<239 and dy>0 and dy<191 then hplot dx,dy
  13. 25 n = -n : gosub 100 : dx=140+n*xz:dy=95.5-y*yz : if dx>0 and dx<239 and dy>0 and dy<191 then hplot dx,dy
  14. 30 n = -n + acc/xz
  15. 40 goto 20
  16.  
  17. 100 Y=sin(n)
  18. 110 return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement