pointvec/scripts/dotgrid.js
Devine Lu Linvega bb71cee73a Init
2016-12-31 08:00:57 -07:00

15 lines
356 B
JavaScript

function Dotgrid(width,height)
{
this.width = width;
this.height = height;
this.element = null;
this.install = function()
{
this.element = document.createElement("div");
this.element.id = "dotgrid";
this.element.style.width = this.width;
this.element.style.height = this.height;
document.body.appendChild(this.element);
}
}