Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. background(207, 207, 207);
  2. line(200,0,200,400);
  3. line(0,200,400,200);
  4.  
  5. stroke(224, 224, 224);
  6. for(var x = 0; x <= 400; x +=10){
  7.     line(x, 0, x, 400);
  8. }
  9. for(var y = 0; y <= 400; y +=10){
  10.     line(0, y, 400, y);
  11. }
  12.  
  13. stroke(0, 0, 0);
  14. line(200,0,200,400);
  15. line(0,200,400,200);
  16.  
  17. stroke(255, 15, 15);
  18. var x = 0;
  19.  
  20. stroke(255, 0, 0);
  21. for(var x = -200; x <= 200; x++){
  22.     y = (-1*(Math.pow(x,2)) + x*4 + 4);
  23.     point(x+200,y+200);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement