Skip to content

Instantly share code, notes, and snippets.

@noboko
Created March 16, 2012 14:03
Show Gist options
  • Save noboko/2050172 to your computer and use it in GitHub Desktop.
Save noboko/2050172 to your computer and use it in GitHub Desktop.
plask
//require('plask');せずにPlask使ってみるテスト。
var window = new PlaskRawMac.NSWindow(0,400,400,1,-1,0);
var canvas = new PlaskRawMac.SkCanvas(window);
var paint = new PlaskRawMac.SkPaint;
paint.setFill();
paint.setAntiAlias(true);
paint.setColor(80, 0, 0, 255);
canvas.clear(230, 230, 230, 255);
canvas.drawCircle(paint, 200, 200, 200);
window.blit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment