Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. console.log("HELLO1");
  2. let grid = 20;
  3. let img = loadImage('https://pbs.twimg.com/profile_images/918290529703616512/Pexo6u9I_400x400.jpg');;
  4. let size;
  5.  
  6. function preload(){
  7.  
  8. }
  9.  
  10.  
  11.  
  12. function setup() {
  13. // img = loadImage('https://pbs.twimg.com/profile_images/918290529703616512/Pexo6u9I_400x400.jpg');
  14. // put setup code here
  15. createCanvas(400,400);
  16. //createCanvas(img.width,img.height);
  17. //image(img,0,0);
  18. fill(0);
  19.  
  20. }
  21.  
  22. function draw() {
  23.  
  24.  
  25. noLoop();
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement