diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-22 19:55:53 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-22 19:55:53 +0200 |
commit | 3e1b0eb968d90f1ba5163b220c4e39dd7fd1e51b (patch) | |
tree | 2f9dcb8b7ac085514913a1ad114a5275978f95fd /NaiveCollisionChecker.cpp | |
parent | 99d7d1695fec28208e19b34bc754dff5dd1e5642 (diff) |
finish collision checking implementation
Diffstat (limited to 'NaiveCollisionChecker.cpp')
-rw-r--r-- | NaiveCollisionChecker.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/NaiveCollisionChecker.cpp b/NaiveCollisionChecker.cpp index db277ab..e26c3d2 100644 --- a/NaiveCollisionChecker.cpp +++ b/NaiveCollisionChecker.cpp @@ -5,7 +5,6 @@ void NaiveCollisionChecker::check() { auto artists = this->museum.people.get_artists(); - for (Artist * artist : artists) artist->colliding = false; auto begin = artists.begin(); auto end = artists.end(); for (auto it1 = begin; it1 != end; ++it1) { |