mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Code layout
This commit is contained in:
parent
33fe400abf
commit
e59c1134d7
@ -94,8 +94,24 @@ Subtracts another matrix from this one
|
||||
bool lesserEqual( const QgsRasterMatrix &other );
|
||||
bool logicalAnd( const QgsRasterMatrix &other );
|
||||
bool logicalOr( const QgsRasterMatrix &other );
|
||||
|
||||
bool max( const QgsRasterMatrix &other );
|
||||
%Docstring
|
||||
Calculates the maximum value between two matrices
|
||||
|
||||
:return: ``True`` on success
|
||||
|
||||
.. versionadded:: 3.10
|
||||
%End
|
||||
|
||||
bool min( const QgsRasterMatrix &other );
|
||||
%Docstring
|
||||
Calculates the minimum value between two matrices
|
||||
|
||||
:return: ``True`` on success
|
||||
|
||||
.. versionadded:: 3.10
|
||||
%End
|
||||
|
||||
bool squareRoot();
|
||||
bool sinus();
|
||||
@ -107,7 +123,15 @@ Subtracts another matrix from this one
|
||||
bool changeSign();
|
||||
bool log();
|
||||
bool log10();
|
||||
|
||||
bool absoluteValue();
|
||||
%Docstring
|
||||
Calculates the absolute value
|
||||
|
||||
:return: ``True`` on success
|
||||
|
||||
.. versionadded:: 3.10
|
||||
%End
|
||||
|
||||
};
|
||||
|
||||
|
@ -111,7 +111,19 @@ class ANALYSIS_EXPORT QgsRasterMatrix
|
||||
bool lesserEqual( const QgsRasterMatrix &other );
|
||||
bool logicalAnd( const QgsRasterMatrix &other );
|
||||
bool logicalOr( const QgsRasterMatrix &other );
|
||||
|
||||
/**
|
||||
* Calculates the maximum value between two matrices
|
||||
* \return TRUE on success
|
||||
* \since QGIS 3.10
|
||||
*/
|
||||
bool max( const QgsRasterMatrix &other );
|
||||
|
||||
/**
|
||||
* Calculates the minimum value between two matrices
|
||||
* \return TRUE on success
|
||||
* \since QGIS 3.10
|
||||
*/
|
||||
bool min( const QgsRasterMatrix &other );
|
||||
|
||||
bool squareRoot();
|
||||
@ -124,6 +136,12 @@ class ANALYSIS_EXPORT QgsRasterMatrix
|
||||
bool changeSign();
|
||||
bool log();
|
||||
bool log10();
|
||||
|
||||
/**
|
||||
* Calculates the absolute value
|
||||
* \return TRUE on success
|
||||
* \since QGIS 3.10
|
||||
*/
|
||||
bool absoluteValue();
|
||||
|
||||
private:
|
||||
|
Loading…
x
Reference in New Issue
Block a user