From fca284d27c210603079dd3c5b54b3389ae5495d5 Mon Sep 17 00:00:00 2001 From: cignoni Date: Tue, 27 Nov 2012 11:52:17 +0000 Subject: [PATCH] corrected box assignment between different types in append::MeshCopy --- vcg/complex/append.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/complex/append.h b/vcg/complex/append.h index e7e02329..013e348b 100644 --- a/vcg/complex/append.h +++ b/vcg/complex/append.h @@ -389,7 +389,7 @@ static void MeshCopy(MeshLeft& ml, ConstMeshRight& mr, bool selected=false) { ml.Clear(); Mesh(ml,mr,selected); - ml.bbox=mr.bbox; + ml.bbox.Import(mr.bbox); } /*! \brief %Append only the selected elements of second mesh to the first one.