blob: 3a95e551069c49bb230179098daf7a91af909c3d [file] [log] [blame]
commit-bot@chromium.org48d94b8c2013-12-16 18:24:51 +00001/**
2 * @fileoverview Sample onDraw script for use with SkV8Example.
3 */
4var onDraw = function(){
5 var tick = 0;
6 function f(canvas) {
7 tick += 0.01;
8 canvas.fillStyle = '#0000ff';
9 canvas.fillRect(100, 100, Math.sin(tick)*100, Math.cos(tick)*100);
10 canvas.inval();
11 };
12 return f;
13}();