How to draw 2D circle in irrlicht

965 Views Asked by At

Is there a way to draw a simple circle with given radius and center point in irrlicht?

1

There are 1 best solutions below

0
On

You can use driver->draw2DPolygon() method. Simply pass vertexCount to be high enough for your size of shape (the smaller circle on the screen, the lower value you can pass and it won't be noticeable that it has edges).