| 74 | } |
| 75 | |
| 76 | void FollowedPolyline::Swap(FollowedPolyline & rhs) |
| 77 | { |
| 78 | m_poly.Swap(rhs.m_poly); |
| 79 | m_segDistance.swap(rhs.m_segDistance); |
| 80 | m_segProj.swap(rhs.m_segProj); |
| 81 | swap(m_current, rhs.m_current); |
| 82 | swap(m_nextCheckpointIndex, rhs.m_nextCheckpointIndex); |
| 83 | } |
| 84 | |
| 85 | void FollowedPolyline::Update() |
| 86 | { |
no test coverage detected