@@ -103,7 +103,7 @@ Returns true if the block may contain no data. It does not guarantee
103
103
that it really contains any no data. It can be used to speed up processing.
104
104
Not the difference between this method and hasNoDataValue().
105
105
106
- :return: true if the block may contain no data *
106
+ :return: true if the block may contain no data
107
107
%End
108
108
109
109
void setNoDataValue( double noDataValue );
@@ -142,7 +142,7 @@ Gets byte array representing a value.
142
142
:param dataType: data type
143
143
:param value: value
144
144
145
- :return: byte array representing the value *
145
+ :return: byte array representing the value
146
146
%End
147
147
148
148
double value( int row, int column ) const;
@@ -180,7 +180,7 @@ Read a single color
180
180
:param row: row index
181
181
:param column: column index
182
182
183
- :return: color *
183
+ :return: color
184
184
%End
185
185
186
186
QRgb color( qgssize index ) const;
@@ -189,7 +189,7 @@ Read a single value
189
189
190
190
:param index: data matrix index (long type in Python)
191
191
192
- :return: color *
192
+ :return: color
193
193
%End
194
194
195
195
bool isNoData( int row, int column ) const;
@@ -235,7 +235,7 @@ Set value on position
235
235
:param column: column index
236
236
:param value: the value to be set
237
237
238
- :return: true on success *
238
+ :return: true on success
239
239
%End
240
240
241
241
bool setValue( qgssize index, double value );
@@ -245,7 +245,7 @@ Set value on index (indexed line by line)
245
245
:param index: data matrix index (long type in Python)
246
246
:param value: the value to be set
247
247
248
- :return: true on success *
248
+ :return: true on success
249
249
%End
250
250
251
251
bool setColor( int row, int column, QRgb color );
@@ -256,7 +256,7 @@ Set color on position
256
256
:param column: column index
257
257
:param color: the color to be set, QRgb value
258
258
259
- :return: true on success *
259
+ :return: true on success
260
260
%End
261
261
262
262
bool setColor( qgssize index, QRgb color );
@@ -266,7 +266,7 @@ Set color on index (indexed line by line)
266
266
:param index: data matrix index (long type in Python)
267
267
:param color: the color to be set, QRgb value
268
268
269
- :return: true on success *
269
+ :return: true on success
270
270
%End
271
271
272
272
@@ -277,7 +277,7 @@ Set no data on pixel
277
277
:param row: row index
278
278
:param column: column index
279
279
280
- :return: true on success *
280
+ :return: true on success
281
281
%End
282
282
283
283
bool setIsNoData( qgssize index );
@@ -286,21 +286,21 @@ Set no data on pixel
286
286
287
287
:param index: data matrix index (long type in Python)
288
288
289
- :return: true on success *
289
+ :return: true on success
290
290
%End
291
291
292
292
bool setIsNoData();
293
293
%Docstring
294
294
Set the whole block to no data
295
295
296
- :return: true on success *
296
+ :return: true on success
297
297
%End
298
298
299
299
bool setIsNoDataExcept( QRect exceptRect );
300
300
%Docstring
301
301
Set the whole block to no data except specified rectangle
302
302
303
- :return: true on success *
303
+ :return: true on success
304
304
%End
305
305
306
306
void setIsData( int row, int column );
@@ -375,7 +375,7 @@ Convert data to different type.
375
375
376
376
:param destDataType: dest data type
377
377
378
- :return: true on success *
378
+ :return: true on success
379
379
%End
380
380
381
381
QImage image() const;
0 commit comments