c8d732800e
Fleshed out a lot of the Path interface. BUG= R=robertphillips@google.com, tfarina@chromium.org, reed@google.com Author: jcgregorio@google.com Review URL: https://codereview.chromium.org/121303004 git-svn-id: http://skia.googlecode.com/svn/trunk@12913 2bbb7eff-a529-9590-31e7-b0007b416f81
20 lines
384 B
JavaScript
20 lines
384 B
JavaScript
/**
|
|
* @fileoverview Sample onDraw script for use with SkV8Example.
|
|
*/
|
|
var onDraw = function(){
|
|
var tick = 0;
|
|
function f(context) {
|
|
tick += 0.1;
|
|
context.fillStyle = '#0000ff';
|
|
context.fillRect(100, 100, Math.sin(tick)*100, Math.cos(tick)*100);
|
|
};
|
|
return f;
|
|
}();
|
|
|
|
function onTimeout() {
|
|
inval();
|
|
print(setTimeout(onTimeout, 33));
|
|
}
|
|
|
|
setTimeout(onTimeout, 33);
|