| 1013 | |
| 1014 | |
| 1015 | static void push3(rcIntArray& queue, int v1, int v2, int v3) |
| 1016 | { |
| 1017 | queue.resize(queue.size() + 3); |
| 1018 | queue[queue.size() - 3] = v1; |
| 1019 | queue[queue.size() - 2] = v2; |
| 1020 | queue[queue.size() - 1] = v3; |
| 1021 | } |
| 1022 | |
| 1023 | static void getHeightData(rcContext* ctx, const rcCompactHeightfield& chf, |
| 1024 | const unsigned short* poly, const int npoly, |
no test coverage detected