Drop lerp and move setup into setup

This commit is contained in:
decentral1se 2021-06-01 18:45:15 +02:00
parent e27b939fb0
commit db20436481
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A

View File

@ -569,22 +569,16 @@ function setup() {
setupRecording();
bgColour = color("#C3EFDB");
background(bgColour);
blendMode(BLEND);
smooth();
noStroke();
}
function draw() {
/**
* The draw loop which is called x times a second where x is the frameRate.
**/
background(bgColour);
blendMode(BLEND);
smooth();
noStroke();
// offset the window view based on new values of x,y related to the screen.
// These values are generated once the user drags the screen with the mouse.
screenX = lerp(screenX, toScreenX, 0.2);
screenY = lerp(screenY, toScreenY, 0.2);
translate(screenX, screenY);
// generate a new shape after a sound recording
if (newSoundJustRecorded === true) {