I want to create lines that look more like hand-drawn lines by adding randomness to them. I currently use this formula to modify the coordinates
x-10+Math.floor(Math.random()*20)
This random distribution is linear, I would like to use something that makes it more likely to hit the target. X
according to something that looks like, but doesn't have to be a bell-curve. How can this be done?