Adds to mSnapPoints, filtering by TimeConverter
| 113 | |
| 114 | // Adds to mSnapPoints, filtering by TimeConverter |
| 115 | void SnapManager::CondListAdd(double t, const Track *track) |
| 116 | { |
| 117 | if (!mSnapToTime || ProjectSnap::Get(*mProject).SnapTime(t).time == t) |
| 118 | { |
| 119 | mSnapPoints.push_back(SnapPoint { t, track }); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | // Return the time of the SnapPoint at a given index |
| 124 | double SnapManager::Get(size_t index) |