mod_geo-tp/src/smoothing.h

11 lines
162 B
C
Raw Normal View History

2021-10-22 14:28:54 +02:00
#ifndef SMOOTHING_H
#define SMOOTHING_H
#include "my_mesh.h"
Point laplace_beltrami(const MyMesh &mesh, VertexHandle vert);
void smooth(MyMesh &mesh);
#endif