Added MeshCopy(dst,src), with the same syntax of memcopy
This commit is contained in:
parent
93c48b10a2
commit
3fc9b9ef1f
|
@ -354,7 +354,12 @@ static void Mesh(MeshLeft& ml, MeshRight& mr, const bool selected = false){
|
|||
// }
|
||||
}
|
||||
|
||||
|
||||
static void MeshCopy(MeshLeft& ml, MeshRight& mr, bool selected=false)
|
||||
{
|
||||
ml.Clear();
|
||||
Mesh(ml,mr,selected);
|
||||
ml.bbox=mr.bbox;
|
||||
}
|
||||
|
||||
static void Selected(MeshLeft& ml, MeshRight& mr)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue