How to draw rectangle
An example showing how to draw rectangle in PIXI.js 3.0 using Tizen 2.3.
var g = new PIXI.Graphics();
g.beginFill(0x000000); // black color
// x, y, width, height
g.drawRect(0, 0, 100, 100);
g.endFill();