corrected box assignment between different types in append::MeshCopy

This commit is contained in:
Paolo Cignoni 2012-11-27 11:52:17 +00:00
parent 2cbd4b7964
commit fca284d27c
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ static void MeshCopy(MeshLeft& ml, ConstMeshRight& mr, bool selected=false)
{ {
ml.Clear(); ml.Clear();
Mesh(ml,mr,selected); 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. /*! \brief %Append only the selected elements of second mesh to the first one.