space correction

This commit is contained in:
Шишов Максим Денисович
2020-09-03 15:50:41 +03:00
parent 9544d5ef0d
commit 8e7d7a54c4

View File

@@ -86,7 +86,8 @@ public:
static _CMatrix filled(const Type & v) {_CMatrix tm; PIMM_FOR_WB(r, c) tm.m[r][c] = v; return tm;} static _CMatrix filled(const Type & v) {_CMatrix tm; PIMM_FOR_WB(r, c) tm.m[r][c] = v; return tm;}
/** /**
* @brief Rotation the matrix by an "angle". Works only with 2x2 matrix, else return _CMatrix * @brief Rotation the matrix by an "angle". Works only with 2x2 matrix,
* else return default construction of PIMathMatrixT
* *
* @param angle is the angle of rotation of the matrix * @param angle is the angle of rotation of the matrix
* @return rotated matrix * @return rotated matrix
@@ -94,7 +95,8 @@ public:
static _CMatrix rotation(double angle) {return _CMatrix();} static _CMatrix rotation(double angle) {return _CMatrix();}
/** /**
* @brief Rotation of the matrix by an "angle" along the X axis. Works only with 3x3 matrix, else return _CMatrix * @brief Rotation of the matrix by an "angle" along the X axis. Works only with 3x3 matrix,
* else return default construction of PIMathMatrixT
* *
* @param angle is the angle of rotation of the matrix along the X axis * @param angle is the angle of rotation of the matrix along the X axis
* @return rotated matrix * @return rotated matrix
@@ -102,7 +104,8 @@ public:
static _CMatrix rotationX(double angle) {return _CMatrix();} static _CMatrix rotationX(double angle) {return _CMatrix();}
/** /**
* @brief Rotation of the matrix by an "angle" along the Y axis. Works only with 3x3 matrix, else return _CMatrix * @brief Rotation of the matrix by an "angle" along the Y axis. Works only with 3x3 matrix,
* else return default construction of PIMathMatrixT
* *
* @param angle is the angle of rotation of the matrix along the Y axis * @param angle is the angle of rotation of the matrix along the Y axis
* @return rotated matrix * @return rotated matrix
@@ -110,7 +113,8 @@ public:
static _CMatrix rotationY(double angle) {return _CMatrix();} static _CMatrix rotationY(double angle) {return _CMatrix();}
/** /**
* @brief Rotation of the matrix by an "angle" along the Z axis. Works only with 3x3 matrix, else return _CMatrix * @brief Rotation of the matrix by an "angle" along the Z axis. Works only with 3x3 matrix,
* else return default construction of PIMathMatrixT
* *
* @param angle is the angle of rotation of the matrix along the Z axis * @param angle is the angle of rotation of the matrix along the Z axis
* @return rotated matrix * @return rotated matrix
@@ -118,7 +122,8 @@ public:
static _CMatrix rotationZ(double angle) {return _CMatrix();} static _CMatrix rotationZ(double angle) {return _CMatrix();}
/** /**
* @brief Scaling the matrix along the X axis by the value "factor". Works only with 3x3 and 2x2 matrix, else return _CMatrix * @brief Scaling the matrix along the X axis by the value "factor". Works only with 3x3 and 2x2 matrix,
* else return default construction of PIMathMatrixT
* *
* @param factor is the value of scaling by X axis * @param factor is the value of scaling by X axis
* @return rotated matrix * @return rotated matrix
@@ -126,7 +131,8 @@ public:
static _CMatrix scaleX(double factor) {return _CMatrix();} static _CMatrix scaleX(double factor) {return _CMatrix();}
/** /**
* @brief Scaling the matrix along the Y axis by the value "factor". Works only with 3x3 and 2x2 matrix, else return _CMatrix * @brief Scaling the matrix along the Y axis by the value "factor". Works only with 3x3 and 2x2 matrix,
* else return default construction of PIMathMatrixT
* *
* @param factor is the value of scaling by Y axis * @param factor is the value of scaling by Y axis
* @return rotated matrix * @return rotated matrix
@@ -134,7 +140,8 @@ public:
static _CMatrix scaleY(double factor) {return _CMatrix();} static _CMatrix scaleY(double factor) {return _CMatrix();}
/** /**
* @brief Scaling the matrix along the Z axis by the value "factor". Works only with 3x3 matrix, else return _CMatrix * @brief Scaling the matrix along the Z axis by the value "factor". Works only with 3x3 matrix,
* else return default construction of PIMathMatrixT
* *
* @param factor is the value of scaling by Z axis * @param factor is the value of scaling by Z axis
* @return rotated matrix * @return rotated matrix