diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-26 11:44:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-30 14:26:34 +0900 |
commit | 6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch) | |
tree | 0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqwmatrix.3qt | |
parent | ff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff) | |
download | tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.tar.gz tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.zip |
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqwmatrix.3qt')
-rw-r--r-- | doc/man/man3/tqwmatrix.3qt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqwmatrix.3qt b/doc/man/man3/tqwmatrix.3qt index b95922d67..254969cbe 100644 --- a/doc/man/man3/tqwmatrix.3qt +++ b/doc/man/man3/tqwmatrix.3qt @@ -283,17 +283,17 @@ Returns the inverted matrix. .PP If the matrix is singular (not invertible), the identity matrix is returned. .PP -If \fIinvertible\fR is not 0: the value of \fI*invertible\fR is set to TRUE if the matrix is invertible; otherwise \fI*invertible\fR is set to FALSE. +If \fIinvertible\fR is not 0: the value of \fI*invertible\fR is set to true if the matrix is invertible; otherwise \fI*invertible\fR is set to false. .PP See also isInvertible(). .PP Example: t14/cannon.cpp. .SH "bool TQWMatrix::isIdentity () const" -Returns TRUE if the matrix is the identity matrix; otherwise returns FALSE. +Returns true if the matrix is the identity matrix; otherwise returns false. .PP See also reset(). .SH "bool TQWMatrix::isInvertible () const" -Returns TRUE if the matrix is invertible; otherwise returns FALSE. +Returns true if the matrix is invertible; otherwise returns false. .PP See also invert(). .SH "double TQWMatrix::m11 () const" @@ -380,11 +380,11 @@ Calling this method can be expensive, if rotations or shearing are used. If you .PP See also TQWMatrix::mapRect(). .SH "bool TQWMatrix::operator!= ( const TQWMatrix & m ) const" -Returns TRUE if this matrix is not equal to \fIm\fR; otherwise returns FALSE. +Returns true if this matrix is not equal to \fIm\fR; otherwise returns false. .SH "TQWMatrix & TQWMatrix::operator*= ( const TQWMatrix & m )" Returns the result of multiplying this matrix by matrix \fIm\fR. .SH "bool TQWMatrix::operator== ( const TQWMatrix & m ) const" -Returns TRUE if this matrix is equal to \fIm\fR; otherwise returns FALSE. +Returns true if this matrix is equal to \fIm\fR; otherwise returns false. .SH "void TQWMatrix::reset ()" Resets the matrix to an identity matrix. .PP |