Custom drawings with PIXI.js 3.0

An example showing how to make custom drawings using Tizen 2.3.
var graphics = new PIXI.Graphics();
graphics.beginFill(0xFF0000);
graphics.drawCircle(50, 50, 100);
graphics.drawCircle(100, 100, 50);
graphics.endFill();

Responses

0 Replies