MatrixInt::Rotate90 Method

Overload List

#SignatureDescription
1TMtxInt *Rotate90() const;Rotates matrix Rows 90 degrees clockwise.
2TMtxInt *Rotate90(TMtxInt *Mtx) const;Rotate all Mtx matrix Rows 90deg clockwise.

Overload 1: TMtxInt *Rotate90() const;

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 MatrixInt::Transp operation.

See Also: MatrixInt::Transp
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 2: TMtxInt *Rotate90(TMtxInt *Mtx) const;

Rotate all Mtx matrix Rows 90deg clockwise.

#NameTypeDescription
1MtxTMtxInt *
Remarks:

Store the results in calling matrix. The MatrixInt::Rows, MatrixInt::Cols and TMtxVecInt::IntPrecision properties of the calling matrix are adjusted automatically.

Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler