Skip to content

Instantly share code, notes, and snippets.

View jjculber's full-sized avatar

Justin Culbertson jjculber

  • RepairTech, Inc
View GitHub Profile
@jjculber
jjculber / pvt.js
Last active December 25, 2015 15:59 — forked from anonymous/pvt.js
//Global Functions & Set Up
function drawCircle() {
var c=document.getElementById("c");
var ctx=c.getContext("2d");
ctx.beginPath();
ctx.arc(250,150,50,0,2*Math.PI);
ctx.fillStyle = "#F00";
ctx.fill();
ctx.strokeStyle = "#F00";
@jjculber
jjculber / pvt.js
Created October 16, 2013 04:06 — forked from anonymous/pvt.js
//Global Functions & Set Up
function drawCircle() {
var c=document.getElementById("c");
var ctx=c.getContext("2d");
ctx.beginPath();
ctx.arc(250,150,50,0,2*Math.PI);
ctx.fillStyle = "#F00";
ctx.fill();
ctx.strokeStyle = "#F00";