I would like to be able to make Canvas elements from the constructor so that I could make a function like this.
function createCanvasContext(height,width) { v
var mycanvas = document.createElement("canvas"); mycanvas.id = "mycanvas"; document.body.appendChild(mycanvas);