| 1 |
|
/*========================================================================= |
| 2 |
|
|
| 3 |
|
Program: Insight Segmentation & Registration Toolkit |
| 4 |
|
Module: $RCSfile: itkPhasedArray3DSpecialCoordinatesImage.txx.html,v $ |
| 5 |
|
Language: C++ |
| 6 |
|
Date: $Date: 2006/01/17 19:15:43 $ |
| 7 |
|
Version: $Revision: 1.4 $ |
| 8 |
|
|
| 9 |
|
Copyright (c) Insight Software Consortium. All rights reserved. |
| 10 |
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. |
| 11 |
|
|
| 12 |
|
Portions of this code are covered under the VTK copyright. |
| 13 |
|
See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm for details. |
| 14 |
|
|
| 15 |
|
This software is distributed WITHOUT ANY WARRANTY; without even |
| 16 |
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 17 |
IND |
*****PURPOSE. See the above copyright notices for more information. |
| 18 |
|
|
| 19 |
|
=========================================================================*/ |
| 20 |
DEF |
#ifndef _itkPhasedArray3DSpecialCoordinatesImage_txx |
| 21 |
DEF |
#define _itkPhasedArray3DSpecialCoordinatesImage_txx |
| 22 |
|
#include "itkPhasedArray3DSpecialCoordinatesImage.h" |
| 23 |
|
|
| 24 |
|
namespace itk |
| 25 |
|
{ |
| 26 |
|
|
| 27 |
|
/** |
| 28 |
|
* |
| 29 |
|
*/ |
| 30 |
|
template<class TPixel> |
| 31 |
|
void |
| 32 |
|
PhasedArray3DSpecialCoordinatesImage<TPixel> |
| 33 |
|
::PrintSelf(std::ostream& os, Indent indent) const |
| 34 |
|
{ |
| 35 |
|
Superclass::PrintSelf(os,indent); |
| 36 |
|
|
| 37 |
|
os << indent << "m_RadiusSampleSize = "<<m_RadiusSampleSize<<std::endl; |
| 38 |
LEN |
os << indent << "m_AzimuthAngularSeparation = "<<m_AzimuthAngularSeparation<<std::endl; |
| 39 |
LEN |
os << indent << "m_ElevationAngularSeparation = "<<m_ElevationAngularSeparation<<std::endl; |
| 40 |
|
os << indent << "m_FirstSampleDistance = "<<m_FirstSampleDistance<<std::endl; |
| 41 |
|
} |
| 42 |
|
|
| 43 |
|
|
| 44 |
|
} // end namespace itk |
| 45 |
|
|
| 46 |
|
#endif |
| 47 |
|
|