From 7752f015ebb42bd5563dfcc4118a6a0c09d27224 Mon Sep 17 00:00:00 2001 From: cnr-isti-vclab Date: Mon, 17 Jul 2006 09:25:28 +0000 Subject: [PATCH] Added default argument for compilation on linux --- vcg/complex/trimesh/create/extended_marching_cubes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/complex/trimesh/create/extended_marching_cubes.h b/vcg/complex/trimesh/create/extended_marching_cubes.h index bc0d7735..7d175237 100644 --- a/vcg/complex/trimesh/create/extended_marching_cubes.h +++ b/vcg/complex/trimesh/create/extended_marching_cubes.h @@ -347,7 +347,7 @@ namespace vcg // SVD of matrix A vcg::ndim::Matrix V(3, 3); double *w = new double[vertices_num]; - vcg::SingularValueDecomposition< vcg::ndim::Matrix >(A, w, V, 100); + vcg::SingularValueDecomposition< typename vcg::ndim::Matrix > (A, w, V, LeaveUnsorted, 100); // rank == 2 -> suppress smallest singular value if (rank == 2)