Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View thoughtleader's full-sized avatar

Michael Evan Kelly thoughtleader

  • Walnut Creek, CA
View GitHub Profile
@thoughtleader
thoughtleader / heartbeats.js
Created March 3, 2012 15:30 — forked from andrewvc/heartbeats.js
simple canvas heartbeat monitor
function Heartbeat(context,width,height) {
var h = this;
h.context = context;
h.width = width;
h.height = height;
h.baseline = Math.round(h.height / 2);
h.context.moveTo(h.x, h.y);
h.context.strokeStyle = "#668CFF";