Skip to content

Instantly share code, notes, and snippets.

View strikersps's full-sized avatar
🏠
Busy Doing Stuffs

Suraj Sharma strikersps

🏠
Busy Doing Stuffs
View GitHub Profile
@u-ndefine
u-ndefine / 50_lines.pde
Last active June 13, 2024 08:03
Sketch of my generative art, "50 Lines"
float decel(float x) { // as an easing function
return 1-(x-1)*(x-1);
}
void setup() {
background(255);
size(750,750,P2D);
PImage img = loadImage("image.png");
strokeWeight(2);
noFill();