Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtx *Rotate90(); | Rotates matrix rows 90 degrees clockwise. |
| 2 | TMtx *Rotate90(TMtx *Mtx); | Rotate all Mtx matrix rows 90deg clockwise. |
Overload 1: TMtx *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 TMtx::Transp operation.
See Also: TMtx::Transp
Declared in Dew::Math::TMtx · Dew.Math/MtxVec.h · Cross-compiler
Overload 2: TMtx *Rotate90(TMtx *Mtx);
Rotate all Mtx matrix rows 90deg clockwise.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Mtx | TMtx * |
Remarks:
Store the results in calling matrix. The TMtx::Rows, TMtx::Cols and TMtx::Complex properties of the calling matrix are adjusted automatically.
Declared in Dew::Math::TMtx · Dew.Math/MtxVec.h · Cross-compiler