Enmesh
Loading...
Searching...
No Matches
mesh_smoothing.h
1#ifndef MESH_SMOOTHING_H
2#define MESH_SMOOTHING_H
3
4#include "mesh/mesh.h"
5#include "mesh/mesh_analysis.h"
6
7namespace Enmesh {
8
14void smooth(Mesh<Triangle>& mesh, int iterations, float lambda);
15
16} // namespace Enmesh
17
18#endif
A class representing a 3D mesh.
Definition mesh.h:29