[vue.auth.dialog] updated dialog 'frequency' canvas

This commit is contained in:
xdrm-brackets 2018-04-09 23:30:14 +02:00
parent aa3d896ed9
commit 86864ab8b2
1 changed files with 11 additions and 9 deletions

View File

@ -142,22 +142,24 @@ export default {
/* (3) Erase previous drawing */ /* (3) Erase previous drawing */
ctx.clearRect(0, 0, can.width, can.height); ctx.clearRect(0, 0, can.width, can.height);
ctx.lineWidth = 7;
/* (4) Trace through each value */
for( let i = precision ; i < buffer.length ; i+=precision ){
/* (4) Begin tracing */
ctx.beginPath(); ctx.beginPath();
ctx.moveTo(0, can.height-128-buffer[0]/2); ctx.strokeStyle = '#44484f';
/* (5) Trace through each value */ ctx.moveTo(i, can.height-128);
for( let i = precision ; i < buffer.length ; i+=precision )
ctx.lineTo(i, can.height-128-buffer[i]/2); ctx.lineTo(i, can.height-128-buffer[i]/2);
/* (6) End tracing */
ctx.lineWidth = 7;
ctx.strokeStyle = '#44484f';
ctx.stroke(); ctx.stroke();
} }
}
}, },
mounted(){ mounted(){