reset indexes to the begginging of containers
| 83 | |
| 84 | // reset indexes to the begginging of containers |
| 85 | void SlopeWalk::prepareWalk() |
| 86 | { |
| 87 | mLeftSlopeIndex = mLeftSlopes.begin(); |
| 88 | mRightSlopeIndex = mRightSlopes.begin(); |
| 89 | mLeftVerticesIndex = mLeftVertices.begin(); |
| 90 | mRightVerticesIndex = mRightVertices.begin(); |
| 91 | } |
| 92 | |
| 93 | // What to do when passing one Vertex down on the Left Path |
| 94 | bool SlopeWalk::passLeftVertex() |
no outgoing calls
no test coverage detected