Is it possible to draw a filled circle with cocos2d ? An outlined circle can be done using the drawCircle() function, but is there a way to fill it in a certain color? Perhaps by using pure OpenGL?
|
|
|
In DrawingPrimitives.m, change this in drawCricle:
to:
You can read more about opengl primitives here: http://www.informit.com/articles/article.aspx?p=461848
|
||||
|
|
|
Here's a slight modification of ccDrawCircle() that lets you draw any slice of a circle. Stick this in CCDrawingPrimitives.m and also add the method header information to CCDrawingPrimitives.h: Parameters: Changes are commented
|
|||
|
|
|
Look into:
These will allow you to fill a circle without needing OpenGL |
|||
|
|
|
I also wonder this, but haven't really accomplished doing it. I tried using CGContext stuff that Grouchal tipped above, but I can't get it to draw anything on the screen. This is what I've tried:
These methods are defined in a cocos node class, and the makestuff method I borrowed from a code example... NOTE: I'm trying to draw any shape or path and fill it. I know that the code above only draws lines, but I didn't wanna continue until I got it working. EDIT: This is probably a crappy solution, but I think this would at least work. Each CocosNode has a texture (Texture2D *). Texture2D class can be initialized from an UIImage. UIImage can be initialized from a CGImageRef. It is possible to create a CGImageRef context for the quartz lib. So, what you would do is:
Question is if this would be fast enough to do. I would prefer if you could sort of get a CGImageRef from the CocosNode directly and draw into it instead of going through all these steps, but I haven't found a way to do that yet (and I'm kind of a noob at this so it's hard to actually get somewhere at all). |
||||
|
|
|
I used this way below.
I made multiple circle with for loop and looks like a filled circle. |
|||
|
|
