| 451 | } |
| 452 | |
| 453 | static int countPolyVerts(const unsigned short* p, const int nvp) |
| 454 | { |
| 455 | for (int i = 0; i < nvp; ++i) |
| 456 | if (p[i] == RC_MESH_NULL_IDX) |
| 457 | return i; |
| 458 | return nvp; |
| 459 | } |
| 460 | |
| 461 | inline bool uleft(const unsigned short* a, const unsigned short* b, const unsigned short* c) |
| 462 | { |
no outgoing calls
no test coverage detected