Creative Computing / Mouse dots

Clément Nasr
May 26, 2022

--

Master in Design and Interaction / Hochschule Rhein Waal / Germany /

One more experiment with mouse drawing using a transparent circle. Its random size create an interesting flow with mouse drawing like faded lights, blurred lens.

Multitude of random circles with mouse drawing

I wanted to upload the video but I’d have to go through Youtube… But you can log in to OpenProcessing / eventually create an account which is quite easy and quick.

Code:

https://openprocessing.org/sketch/1552952

function setup() {
createCanvas(800, 800);
background(184, 224, 194);
}

/////////////////////////////FUNCTION
function draw() {

let x=mouseX
let y=mouseY
let r=random(2,80)

noStroke()
fill(255, 50)
ellipse(x, y, r*2)

}

--

--

Clément Nasr

Master in Design & Interaction, Germany | UX UI Designer / Graphic Designer / Art Director