space correction
This commit is contained in:
committed by
Федоренко Дмитрий Витальевич
parent
14e13fa8c1
commit
33d1abd14c
@@ -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;}
|
||||
|
||||
/**
|
||||
* @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
|
||||
* @return rotated matrix
|
||||
@@ -94,7 +95,8 @@ public:
|
||||
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
|
||||
* @return rotated matrix
|
||||
@@ -102,7 +104,8 @@ public:
|
||||
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
|
||||
* @return rotated matrix
|
||||
@@ -110,7 +113,8 @@ public:
|
||||
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
|
||||
* @return rotated matrix
|
||||
@@ -118,7 +122,8 @@ public:
|
||||
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
|
||||
* @return rotated matrix
|
||||
@@ -126,7 +131,8 @@ public:
|
||||
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
|
||||
* @return rotated matrix
|
||||
@@ -134,7 +140,8 @@ public:
|
||||
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
|
||||
* @return rotated matrix
|
||||
|
||||
Reference in New Issue
Block a user