| 390 | } |
| 391 | |
| 392 | const glm::mat4 Widget::getOrientationMatrix(const CellIndex& pIndex) |
| 393 | { |
| 394 | if (mOrientMatrices.find(pIndex)==mOrientMatrices.end()) { |
| 395 | mOrientMatrices.emplace(pIndex, IDENTITY); |
| 396 | } |
| 397 | return mOrientMatrices[pIndex]; |
| 398 | } |
| 399 | |
| 400 | } |
| 401 | } |
nothing calls this directly
no outgoing calls
no test coverage detected