 |
CONFIG LIB
1.5
Configuration Files Library (by TGG 2020)
|
135 A.
xx /= s; A.
xy /= s; A.
xz /= s;
136 A.
yx /= s; A.
yy /= s; A.
yz /= s;
137 A.
zx /= s; A.
zy /= s; A.
zz /= s;
189 if( w != 0.0 ) C /= w;
MATRIX_3x3 operator-(const MATRIX_3x3 &A, const MATRIX_3x3 &B)
Arithmetic operator - subtraction of 2 matrices (sum of A and -B)
MATRIX_3x3 class and functions.
void SetToZero(void)
reset matrix - set all components to zero
MATRIX_3x3 operator&(const MATRIX_3x3 &A, const MATRIX_3x3 &B)
Arithmetic operator - multiplication of 2 matrices components ( AxxBxx, AxyBxy, .....
Vector 3D class - vector manipulation.
MATRIX_3x3 operator+(const MATRIX_3x3 &A, const MATRIX_3x3 &B)
Arithmetic operator - sum of 2 matrices.
void operator/=(MATRIX_3x3 &A, const double &s)
Arithmetic operator - division assignment.
double Det(void)
matrix determinant
MATRIX_3x3 operator~(const MATRIX_3x3 &A)
Arithmetic operator - matrix inversion ( A^(-1) )
MATRIX_3x3 class and functions.
MATRIX_3x3 operator/(const MATRIX_3x3 &A, const double &s)
Arithmetic operator - division of matrix by scalar (product of matrix and 1/s)
MATRIX_3x3 operator!(const MATRIX_3x3 &A)
Arithmetic operator - matrix transposition ( A^T )
MATRIX_3x3 operator*(const MATRIX_3x3 &A, const MATRIX_3x3 &B)
Arithmetic operator - multiplication of 2 matrices.