| 32 | namespace |
| 33 | { |
| 34 | struct Key |
| 35 | { |
| 36 | Key(int i, float d) : index(i), depth(d) {} |
| 37 | |
| 38 | int index; |
| 39 | float depth; |
| 40 | |
| 41 | bool operator < (const Key& rhs) const { return depth < rhs.depth; } |
| 42 | }; |
| 43 | } |
| 44 | |
| 45 | int NvFlexExtCreateWeldedMeshIndices(const float* vertices, int numVertices, int* uniqueIndices, int* originalToUniqueMap, float threshold) |
no outgoing calls
no test coverage detected