Added rect shape

This commit is contained in:
Devine Lu Linvega
2017-01-04 11:25:40 -07:00
parent d4cdf26d22
commit f606b9be5f
3 changed files with 28 additions and 3 deletions

View File

@@ -10,10 +10,11 @@ function Keyboard()
case 81 : dotgrid.reset(); break;
case 87 : dotgrid.erase(); break;
case 80 : dotgrid.export(); break;
case 69 : dotgrid.export(); break;
case 90 : dotgrid.draw_dot(); break;
case 88 : dotgrid.draw_circle(); break;
case 67 : dotgrid.draw_rect(); break;
}
}
}