// this is a p5.js script that generates mesh image for the website
functionsetup(){
createCanvas(500,700);
background("rgba(0,0,0,0)");
stroke("rgba(255,255,255,1)");
letj=475;
for(leti=0;i<700;i+=35){
line(500,i,j,700);
j-=25;
}
}
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.