Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxInt *Rotate90(); | Rotates matrix Rows 90 degrees clockwise. |
| 2 | TMtxInt *Rotate90(TMtxInt *Mtx); | Rotate all Mtx matrix Rows 90deg clockwise. |
Overload 1: TMtxInt *Rotate90();
Rotates matrix Rows 90 degrees clockwise.
Remarks:
Rotates all calling matrix Rows 90 degrees clockwise in-place (check the scheme bellow).
Note
This operation differs from the TMtxByte::Transp operation.
See Also: TMtxByte::Transp
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler
Overload 2: TMtxInt *Rotate90(TMtxInt *Mtx);
Rotate all Mtx matrix Rows 90deg clockwise.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Mtx | TMtxInt * |
Remarks:
Store the results in calling matrix. The TMtxByte::Rows, TMtxByte::Cols and TMtxByte::IntPrecision properties of the calling matrix are adjusted automatically.
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler