From 2620ac088b71f28aa0501eed10ff1df3219efe1f Mon Sep 17 00:00:00 2001 From: korialis Date: Fri, 24 Jul 2020 11:53:04 +0200 Subject: [PATCH] fix old regression after moving tetra code into the tri namespace --- wrap/io_tetramesh/import_msh.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wrap/io_tetramesh/import_msh.h b/wrap/io_tetramesh/import_msh.h index d6a4cbdd..deaf58ab 100644 --- a/wrap/io_tetramesh/import_msh.h +++ b/wrap/io_tetramesh/import_msh.h @@ -94,7 +94,7 @@ class MshInfo typedef typename AttribTraits::Type AttrType; typedef typename MeshType::template PerVertexAttributeHandle AttrHandle; - AttrHandle handle = vcg::tetra::Allocator::template GetPerVertexAttribute(mesh, attrib_name); + AttrHandle handle = vcg::tri::Allocator::template GetPerVertexAttribute(mesh, attrib_name); size_t num_nodes = size_t(mesh.VN()); for (int i=0; i::Type AttrType; typedef typename MeshType::template PerFaceAttributeHandle AttrHandle; - AttrHandle handle = vcg::tetra::Allocator::template GetPerFaceAttribute(mesh, attrib_name); + AttrHandle handle = vcg::tri::Allocator::template GetPerFaceAttribute(mesh, attrib_name); size_t num_elements = size_t(mesh.TN()); for (int i=0; i