| 128 | } |
| 129 | |
| 130 | void NavMeshDebugDraw::end() |
| 131 | { |
| 132 | if (!_currentPrimitive) |
| 133 | return; |
| 134 | _currentPrimitive->end = _vertices.size(); |
| 135 | _primitiveList.emplace_back(_currentPrimitive); |
| 136 | _currentPrimitive = nullptr; |
| 137 | } |
| 138 | |
| 139 | Vec4 NavMeshDebugDraw::getColor(unsigned int col) |
| 140 | { |
no test coverage detected