| 27 | } |
| 28 | |
| 29 | void TriangleMesh::release() |
| 30 | { |
| 31 | m_indices.clear(); |
| 32 | m_x0.clear(); |
| 33 | m_x.clear(); |
| 34 | m_normals.clear(); |
| 35 | m_vertexNormals.clear(); |
| 36 | } |
| 37 | |
| 38 | void TriangleMesh::addFace(const unsigned int * const indices) |
| 39 | { |
no test coverage detected