From 9aac4d09e6da1a25df34aae986a8d28bedd9312d Mon Sep 17 00:00:00 2001 From: papush! Date: Wed, 5 Jan 2022 15:55:07 +0100 Subject: [PATCH] fix smoothing --- src/smoothing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();