@@ -204,9 +204,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
204
204
205
205
template <typename T>
206
206
void
207
- SetPixelType (const T & itkNotUsed (dummy), bool UsePointPixel = true)
207
+ SetPixelType (const T & itkNotUsed (dummy), bool usePointPixel = true)
208
208
{
209
- if (UsePointPixel )
209
+ if (usePointPixel )
210
210
{
211
211
SetNumberOfPointPixelComponents (1 );
212
212
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -222,9 +222,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
222
222
223
223
template <typename T>
224
224
void
225
- SetPixelType (const RGBPixel<T> & itkNotUsed (dummy), bool UsePointPixel = true)
225
+ SetPixelType (const RGBPixel<T> & itkNotUsed (dummy), bool usePointPixel = true)
226
226
{
227
- if (UsePointPixel )
227
+ if (usePointPixel )
228
228
{
229
229
SetNumberOfPointPixelComponents (3 );
230
230
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -240,9 +240,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
240
240
241
241
template <typename T>
242
242
void
243
- SetPixelType (const RGBAPixel<T> & itkNotUsed (dummy), bool UsePointPixel = true)
243
+ SetPixelType (const RGBAPixel<T> & itkNotUsed (dummy), bool usePointPixel = true)
244
244
{
245
- if (UsePointPixel )
245
+ if (usePointPixel )
246
246
{
247
247
SetNumberOfPointPixelComponents (4 );
248
248
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -258,9 +258,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
258
258
259
259
template <typename T, unsigned int VLength>
260
260
void
261
- SetPixelType (const Vector<T, VLength> & itkNotUsed (dummy), bool UsePointPixel = true)
261
+ SetPixelType (const Vector<T, VLength> & itkNotUsed (dummy), bool usePointPixel = true)
262
262
{
263
- if (UsePointPixel )
263
+ if (usePointPixel )
264
264
{
265
265
SetNumberOfPointPixelComponents (VLength);
266
266
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -276,9 +276,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
276
276
277
277
template <typename T, unsigned int VLength>
278
278
void
279
- SetPixelType (const CovariantVector<T, VLength> & itkNotUsed (dummy), bool UsePointPixel = true)
279
+ SetPixelType (const CovariantVector<T, VLength> & itkNotUsed (dummy), bool usePointPixel = true)
280
280
{
281
- if (UsePointPixel )
281
+ if (usePointPixel )
282
282
{
283
283
SetNumberOfPointPixelComponents (VLength);
284
284
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -294,9 +294,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
294
294
295
295
template <typename T, unsigned int VLength>
296
296
void
297
- SetPixelType (const FixedArray<T, VLength> & itkNotUsed (dummy), bool UsePointPixel = true)
297
+ SetPixelType (const FixedArray<T, VLength> & itkNotUsed (dummy), bool usePointPixel = true)
298
298
{
299
- if (UsePointPixel )
299
+ if (usePointPixel )
300
300
{
301
301
SetNumberOfPointPixelComponents (VLength);
302
302
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -312,9 +312,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
312
312
313
313
template <typename T, unsigned int VLength>
314
314
void
315
- SetPixelType (const SymmetricSecondRankTensor<T, VLength> itkNotUsed (dummy), bool UsePointPixel = true)
315
+ SetPixelType (const SymmetricSecondRankTensor<T, VLength> itkNotUsed (dummy), bool usePointPixel = true)
316
316
{
317
- if (UsePointPixel )
317
+ if (usePointPixel )
318
318
{
319
319
SetNumberOfPointPixelComponents (VLength * (VLength + 1 ) / 2 );
320
320
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -330,9 +330,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
330
330
331
331
template <typename T>
332
332
void
333
- SetPixelType (const DiffusionTensor3D<T> & itkNotUsed (dummy), bool UsePointPixel = true)
333
+ SetPixelType (const DiffusionTensor3D<T> & itkNotUsed (dummy), bool usePointPixel = true)
334
334
{
335
- if (UsePointPixel )
335
+ if (usePointPixel )
336
336
{
337
337
SetNumberOfPointPixelComponents (6 );
338
338
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -348,9 +348,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
348
348
349
349
template <typename T, unsigned int VRows, unsigned int VColumns>
350
350
void
351
- SetPixelType (const Matrix<T, VRows, VColumns> & itkNotUsed (dummy), bool UsePointPixel = true)
351
+ SetPixelType (const Matrix<T, VRows, VColumns> & itkNotUsed (dummy), bool usePointPixel = true)
352
352
{
353
- if (UsePointPixel )
353
+ if (usePointPixel )
354
354
{
355
355
SetNumberOfPointPixelComponents (VRows * VColumns);
356
356
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -366,9 +366,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
366
366
367
367
template <typename T>
368
368
void
369
- SetPixelType (const std::complex<T> & itkNotUsed (dummy), bool UsePointPixel = true)
369
+ SetPixelType (const std::complex<T> & itkNotUsed (dummy), bool usePointPixel = true)
370
370
{
371
- if (UsePointPixel )
371
+ if (usePointPixel )
372
372
{
373
373
SetNumberOfPointPixelComponents (2 );
374
374
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -384,9 +384,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
384
384
385
385
template <typename T>
386
386
void
387
- SetPixelType (const Array<T> & array, bool UsePointPixel = true )
387
+ SetPixelType (const Array<T> & array, bool usePointPixel = true )
388
388
{
389
- if (UsePointPixel )
389
+ if (usePointPixel )
390
390
{
391
391
SetNumberOfPointPixelComponents (array.Size ());
392
392
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -402,9 +402,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
402
402
403
403
template <typename T>
404
404
void
405
- SetPixelType (const VariableLengthVector<T> & vector, bool UsePointPixel = true )
405
+ SetPixelType (const VariableLengthVector<T> & vector, bool usePointPixel = true )
406
406
{
407
- if (UsePointPixel )
407
+ if (usePointPixel )
408
408
{
409
409
SetNumberOfPointPixelComponents (vector.Size ());
410
410
SetPointPixelComponentType (MapComponentType<T>::CType);
@@ -420,9 +420,9 @@ class ITKIOMeshBase_EXPORT MeshIOBase : public LightProcessObject
420
420
421
421
template <typename T>
422
422
void
423
- SetPixelType (const VariableSizeMatrix<T> & matrix, bool UsePointPixel = true )
423
+ SetPixelType (const VariableSizeMatrix<T> & matrix, bool usePointPixel = true )
424
424
{
425
- if (UsePointPixel )
425
+ if (usePointPixel )
426
426
{
427
427
SetNumberOfPointPixelComponents (matrix.Rows () * matrix.Cols ());
428
428
SetPointPixelComponentType (MapComponentType<T>::CType);
0 commit comments