xxxxxxxxxx
var DIM = Math.min(window.innerWidth, window.innerHeight)
function setup() {
createCanvas(DIM, DIM)
}
function draw() {
clear()
translate(DIM/3, DIM/3)
frameRate(5)
if(frameCount%5==0) {
strokeWeight(0.49)
} else {
strokeWeight(0.51)
}
bezier(147, 109, 236, 137, 49, 66, -3, 167) // only this one has the problem
translate(10,10)
bezier(148, 110, 237, 137, 50, 67, -2, 168)
}