changed the split_copy overloaded function with edgehandle as first

parameter tzo always copy internal properties
This commit is contained in:
Martin Schultz
2017-06-29 10:21:46 +02:00
parent 019ea5d6ae
commit 8302ef59dd

View File

@@ -494,7 +494,7 @@ void TriConnectivity::split_copy(EdgeHandle _eh, VertexHandle _vh)
// Copy the properties of the original edge to all neighbor edges that // Copy the properties of the original edge to all neighbor edges that
// have been created // have been created
for(VEIter ve_it = ve_iter(_vh); ve_it.is_valid(); ++ve_it) for(VEIter ve_it = ve_iter(_vh); ve_it.is_valid(); ++ve_it)
copy_all_properties(_eh, *ve_it); copy_all_properties(_eh, *ve_it, true);
} }
}// namespace OpenMesh }// namespace OpenMesh