1
Graphics / Re: sf::vertexarray to make circles
« on: November 16, 2014, 09:41:53 am »It's good that you got the vertex array working to make the circle as you wanted but, since you're only using it for "debugging" (assuming something like showing position feedback visually), you may way to look at what eXpl0it3r was talking about. CircleShapes can be much quicker and easier to set up than vertex arrays and they can easily draw rings (circle outlines with no fill).
Yup right, thats what my debug draw does, it just shows the collision boxes of all the objects.
I know sf::CircleShape method already, but I dont want to do it that way thats why I specifically for how to do them with vertex arrays.