1
Fork 0

javascript(linear-regression): fixed const

Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
Matei Adriel 2019-01-22 15:35:55 +02:00 committed by prescientmoon
parent bad97c8ff1
commit e96ee4884e
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4

View file

@ -6,7 +6,7 @@ canvas.width = window.innerWidth;
const w = window.innerWidth;
const h = window.innerHeight;
const points = [];
let points = [];
const pointSize = 5;
const shuffleProcent = 0.99;