diff --git a/src/smoothing.cpp b/src/smoothing.cpp index fccdd79..feb90b8 100644 --- a/src/smoothing.cpp +++ b/src/smoothing.cpp @@ -132,7 +132,7 @@ void smooth(MyMesh &mesh, SmoothingMethod method, double cotan_factor) { laplacian = laplacian_matrix(mesh, uniform_weight, uniform_mass); } - laplacian = laplacian * laplacian; // Mise au carré. + // laplacian = laplacian * laplacian; // Mise au carré. // Transfert des coordonées de chaque point dans une matrice. size_t n_verts = mesh.n_vertices();