diff --git a/src/easymesh/easymesh.cpp b/src/easymesh/easymesh.cpp index bab89185..deeddc6d 100644 --- a/src/easymesh/easymesh.cpp +++ b/src/easymesh/easymesh.cpp @@ -432,7 +432,10 @@ EasyMesh::EasyMesh() //----------------------------------------------------------------------------- EasyMesh::EasyMesh(const EasyMesh& em) { - *this = em; + //*this = em; + m_indices = em.m_indices; + m_vert = em.m_vert; + m_cursors = em.m_cursors; m_build_data = nullptr; m_gpu_data = GpuEasyMeshData(); if (m_indices.Count() && m_vert.Count() && m_cursors.Count())