'Experience' is such an exciting concept, and that's why I have bet on it for more than four years now.

I have worked for users and admirers of visual content in several industries and areas of design.

Currently, I'm working on an ed-tech project and SaaS as product designer and I'm discovering the fascinating world of creative coding.

let img; let cnv; function preload(){ img = loadImage ('sara_photo_1.png'); } function setup() { cnv=createCanvas(img.width, img.height); //print(img.width, img.height); //for curiosity let newCanvasX = (windowWidth - img.width)/2; let newCanvasY = (windowHeight - img.height)/2; cnv.position(newCanvasX, newCanvasY); } function draw(){ background(225); //acces the pixel information of the iamge for(let col= 0; col