Add a new tet. Indices must be an array of size 4. */
| 39 | /** Add a new tet. Indices must be an array of size 4. |
| 40 | */ |
| 41 | void IndexedTetMesh::addTet(const unsigned int * const indices) |
| 42 | { |
| 43 | for (unsigned int i=0u; i < 4; i++) |
| 44 | m_tetIndices.push_back(indices[i]); |
| 45 | } |
| 46 | |
| 47 | /** Add a new tet. Indices must be an array of size 4. |
| 48 | */ |