How to draw ellipse

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

Responses

0 Replies