How to draw circle

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

Responses

0 Replies