Assign

Declaration:TMat4D.Assign(Source: TPersistent);
The Assign method assigns one TMat4D to another.

Hint 1: In general, the statement Destination := Source; is not the same as the statement Destination.Assign(Source);. The first statement makes Destination referring to the same object as Source, whereas the second statement copies the contents of the object referenced by Source into the object referenced by Destination.