Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[python] Add bits() bindings for QgsRasterBlock
Loading branch information
Showing
1 changed file
with
3 additions
and
5 deletions .
+3
−5
python/core/raster/qgsrasterblock.sip
@@ -201,22 +201,20 @@ class QgsRasterBlock
* @param row row index
* @param column column index
* @return pointer to data
* @note not available in python bindings
*/
// char * bits( int row, int column );
void * bits( int row, int column ) /PyName=bitsByRowCol/ [char * ()] ;
/** \brief Get pointer to data
* @param index data matrix index (long type in Python)
* @return pointer to data
* @note not available in python bindings
*/
// char * bits( qgssize index );
void * bits( qgssize index ) /PyName=bitsByIndex/ [char * ()] ;
/** \brief Get pointer to data
* @return pointer to data
* @note not available in python bindings
*/
// char * bits() ;
void *bits() [ char * ()] ;
/** \brief Print double value with all necessary significant digits.
* It is ensured that conversion back to double gives the same number.
Toggle all file notes
This comment has been minimized.
Did you miss one @note not available on line 215?
This comment has been minimized.