Drawing a circle using Andengine

I am searching a way to draw a circle using Andengine. As I can see, I can only draw lines, rectangles, and place sprites, but I cannot find a way to draw circles. How can I do this?


Indeed, you can't directly draw a circle. Alternatives are:

  • Rendering a quad with a circle texture (see this link, for example)
  • Rendering a circle that's actually a circle of connected triangles. You'd have to procedurally generate the geometry to approximate a circle. For a solid circle, that's not so hard. A hollow circle / circle outline, a bit more involved, I suppose. You could also draw a circle with lines, if that's what you want.
  • Good luck.

    链接地址: http://www.djcxy.com/p/68948.html

    上一篇: 通过box2d在android andengine中创建圈子?

    下一篇: 使用Andengine绘制一个圆