From ef5ace5aa7ca31c2b23da2ddcfe672438e7f8fe5 Mon Sep 17 00:00:00 2001 From: Fabio Ganovelli ganovelli Date: Fri, 18 Jun 2010 11:46:51 +0000 Subject: [PATCH] updated calls to append::mesh --- src/meshlabplugins/filter_texture/filter_texture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlabplugins/filter_texture/filter_texture.cpp b/src/meshlabplugins/filter_texture/filter_texture.cpp index 4b1bc948d..470c7ab02 100644 --- a/src/meshlabplugins/filter_texture/filter_texture.cpp +++ b/src/meshlabplugins/filter_texture/filter_texture.cpp @@ -227,7 +227,7 @@ inline void ExtractVertex(const CMeshO & srcMesh, const CMeshO::FaceType & f, in (void)dstMesh; // This is done to preserve every single perVertex property // perVextex Texture Coordinate is instead obtained from perWedge one. - v.ImportLocal(*f.cV(whichWedge)); + v.ImportData(*f.cV(whichWedge)); v.T() = f.cWT(whichWedge); }