ctx-translate-center
v1.0.0
Published
translate to the center of an html5 canvas 2d context
Downloads
13
Maintainers
Readme
ctx-translate-center
translate to the center of an html5 canvas 2d context
install
npm install ctx-translate-center
use
var center = require('ctx-translate-center');
var ctx = document.createElement('canvas').getContext('2d');
document.body.appendChild(ctx.canvas);
ctx.fillStyle = "black";
ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height);
center(ctx);
ctx.beginPath();
ctx.arc(0, 0, 20, 0, Math.PI*2, false);
ctx.fillStyle = "orange";
ctx.fill()
results in: