* Add existing triangulation of the point cloud. Used for refining an * existing triangulation. This is equivalent to passing a .node * (specified with `set_points()`) and a .ele file as input (specified * with this functions). */
| 43 | * with this functions). |
| 44 | */ |
| 45 | void set_triangles(const MatrixIr& triangles) { m_triangles = triangles; } |
| 46 | const MatrixIr& get_triangles() const { return m_triangles; } |
| 47 | |
| 48 | /** |