1
Graphics / Re: Drawing convex shapes using a vector of Vector2f's
« on: January 04, 2014, 02:42:29 pm »
I mean , adding a point to a vector of vertices would be as simple as
vertices.push_back(point);
while adding a point to a ConvexShape means i have to raise the point count and then add the point (i believe that's how it works).