Hello! Lets say I have collection of circles that I want to draw. They are identical in color, outline etc. Like shown in the picture above.
Let's say I store the positions and radiuses in vectors. I don't want to store every sf::CircleShape individually since that takes too much memory and makes the program slow.
Is there a way to make a single sf::CircleShape and use (tranform?) something to move and scale the circle with the vectors mentioned above? And is there a way to draw them with a single RenderTarget::draw() like with sf::VertexArray?
Responses are greatly appreciated.