User:Michael Murtaugh

From XPUB & Lens-Based wiki
Revision as of 14:59, 25 September 2012 by Michael Murtaugh (talk | contribs)

Hello.

We talked about how to add numbers today.

My technical plan can be found here.

User:Michael_Murtaugh

http://vimeo.com/45743577

<canvas width=500 height=500 showsrc=true> function draw() {

 c = document.getElementById("c");
 p = c.getContext('2d');
 x = 10;
 while(x<300) {
 p.strokeRect(x, x, 20 20);
 x += 20;
 }

} </canvas>