| 379 | } |
| 380 | |
| 381 | bool operator < (const VertexKey& rhs) const |
| 382 | { |
| 383 | if (v != rhs.v) |
| 384 | return v < rhs.v; |
| 385 | else if (vt != rhs.vt) |
| 386 | return vt < rhs.vt; |
| 387 | else |
| 388 | return vn < rhs.vn; |
| 389 | } |
| 390 | }; |
| 391 | |
| 392 | Mesh* ImportMeshFromObj(const char* path) |
nothing calls this directly
no outgoing calls
no test coverage detected