|
||
MATRIX CopyAndInvert();
|
|
|||||
Synopsis |
using SilverSharp;
The CopyAndInvert method makes a copy of the SilverSharp.MATRIX object, inverts it, and returns the copy.
|
|
||||
Parameters |
none
|
|
||||
Return Value |
CopyAndInvert returns a new SilverSharp.MATRIX object if successful, or null if the original matrix has no inversion.
|
|
||||
Remarks |
The returned object may be modified without affecting the original.
|
|
||||
See Also |
|
|
||||
Example |
The following code shows how to make an inverse copy of a matrix. The MATRIX mx2 will contain the inverse transformation matrix of mx1 when finished.
The following code is equivalent:
|
|