------------------------------------------------------------------------------------------------ Reverses vertex indices in a face.
| 134 | // ------------------------------------------------------------------------------------------------ |
| 135 | // Reverses vertex indices in a face. |
| 136 | static void flipWindingOrder(aiFace &f) { |
| 137 | std::reverse(f.mIndices, f.mIndices + f.mNumIndices); |
| 138 | } |
| 139 | |
| 140 | // ------------------------------------------------------------------------------------------------ |
| 141 | // Duplicates a face and inverts it. Also duplicates all vertices (so the new face gets its own |
no test coverage detected