You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
there's a snippet in this chapter that is written like this:
for (int i =0; i < groupOfBalls.size(); i++) {
float distance = ofDist(x,y, groupOfBalls[i].x, groupOfBalls[i].y); // a method oF gives us to check the distance between two coordinates
if (distance < groupOfBalls[i].dim) {
groupOfBalls.erase(groupOfBalls.begin()+i); // we need to use an iterator/ reference to the vector position we want to delete
}
}
this is incorrect (and had a student got tripped up on this) since you are altering the vector as you delete.
there's a snippet in this chapter that is written like this:
this is incorrect (and had a student got tripped up on this) since you are altering the vector as you delete.
either can rewrite it like this:
https://stackoverflow.com/questions/8597240/how-to-delete-an-element-from-a-vector-while-looping-over-it
I typically use lambdas now for this:
https://stackoverflow.com/questions/4478636/stdremove-if-lambda-not-removing-anything-from-the-collection
The text was updated successfully, but these errors were encountered: