final tab correction
This commit is contained in:
@@ -120,7 +120,7 @@ public:
|
|||||||
*
|
*
|
||||||
* @param v is a parameter the type and value of which is selected and later filled into the matrix
|
* @param v is a parameter the type and value of which is selected and later filled into the matrix
|
||||||
* @return filled matrix of type PIMathMatrixT
|
* @return filled matrix of type PIMathMatrixT
|
||||||
*/
|
*/
|
||||||
static _CMatrix filled(const Type &v) {
|
static _CMatrix filled(const Type &v) {
|
||||||
_CMatrix tm;
|
_CMatrix tm;
|
||||||
PIMM_FOR_WB(r, c) tm.m[r][c] = v;
|
PIMM_FOR_WB(r, c) tm.m[r][c] = v;
|
||||||
@@ -965,7 +965,7 @@ public:
|
|||||||
* @param r0 is the number of the first selected row
|
* @param r0 is the number of the first selected row
|
||||||
* @param r1 is the number of the second selected row
|
* @param r1 is the number of the second selected row
|
||||||
* @return matrix type _CMatrix
|
* @return matrix type _CMatrix
|
||||||
*/
|
*/
|
||||||
_CMatrix &swapCols(uint r0, uint r1) {
|
_CMatrix &swapCols(uint r0, uint r1) {
|
||||||
PIMM_FOR_C(i) { piSwap(_V2D::element(i, r0), _V2D::element(i, r1)); }
|
PIMM_FOR_C(i) { piSwap(_V2D::element(i, r0), _V2D::element(i, r1)); }
|
||||||
return *this;
|
return *this;
|
||||||
|
|||||||
Reference in New Issue
Block a user