| 103 | } |
| 104 | |
| 105 | void IndexedFaceMesh::addUV(const Real u, const Real v) |
| 106 | { |
| 107 | Vector2r uv; |
| 108 | uv[0] = u; |
| 109 | uv[1] = v; |
| 110 | m_uvs.push_back(uv); |
| 111 | } |
| 112 | |
| 113 | void IndexedFaceMesh::addUVIndex(const unsigned int index) |
| 114 | { |
no test coverage detected