diff --git a/Modules/Core/QuadEdgeMesh/include/itkQuadEdgeMeshToQuadEdgeMeshFilter.h b/Modules/Core/QuadEdgeMesh/include/itkQuadEdgeMeshToQuadEdgeMeshFilter.h index 4ad8eea3006..9c0c66cd806 100644 --- a/Modules/Core/QuadEdgeMesh/include/itkQuadEdgeMeshToQuadEdgeMeshFilter.h +++ b/Modules/Core/QuadEdgeMesh/include/itkQuadEdgeMeshToQuadEdgeMeshFilter.h @@ -49,7 +49,8 @@ class ITK_TEMPLATE_EXPORT QuadEdgeMeshToQuadEdgeMeshFilter : public MeshToMeshFi using InputMeshType = TInputMesh; using InputMeshPointer = typename InputMeshType::Pointer; using InputMeshConstPointer = typename InputMeshType::ConstPointer; - using InputCoordRepType = typename InputMeshType::CoordRepType; + using InputCoordinateType = typename InputMeshType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputPointType = typename InputMeshType::PointType; using InputPointIdentifier = typename InputMeshType::PointIdentifier; using InputQEPrimal = typename InputMeshType::QEPrimal; @@ -76,7 +77,8 @@ class ITK_TEMPLATE_EXPORT QuadEdgeMeshToQuadEdgeMeshFilter : public MeshToMeshFi using OutputMeshType = TOutputMesh; using OutputMeshPointer = typename OutputMeshType::Pointer; using OutputMeshConstPointer = typename OutputMeshType::ConstPointer; - using OutputCoordRepType = typename OutputMeshType::CoordRepType; + using OutputCoordinateType = typename OutputMeshType::CoordRepType; + using OutputCoordRepType = OutputCoordinateType; using OutputPointType = typename OutputMeshType::PointType; using OutputPointIdentifier = typename OutputMeshType::PointIdentifier; using OutputQEPrimal = typename OutputMeshType::QEPrimal; diff --git a/Modules/Core/Transform/include/itkBSplineTransformInitializer.h b/Modules/Core/Transform/include/itkBSplineTransformInitializer.h index dd0b73d03c7..93253931ce3 100644 --- a/Modules/Core/Transform/include/itkBSplineTransformInitializer.h +++ b/Modules/Core/Transform/include/itkBSplineTransformInitializer.h @@ -63,7 +63,8 @@ class ITK_TEMPLATE_EXPORT BSplineTransformInitializer : public Object using ImagePointer = typename ImageType::ConstPointer; using IndexType = typename ImageType::IndexType; using ImagePointType = typename ImageType::PointType; - using ImagePointCoordRepType = typename ImagePointType::CoordRepType; + using ImagePointCoordinateType = typename ImagePointType::CoordRepType; + using ImagePointCoordRepType = ImagePointCoordinateType; /** Types defined from transform traits. */ using TransformPointer = typename TransformType::Pointer; diff --git a/Modules/Filtering/QuadEdgeMeshFiltering/include/itkBorderQuadEdgeMeshFilter.h b/Modules/Filtering/QuadEdgeMeshFiltering/include/itkBorderQuadEdgeMeshFilter.h index f20d1d26d3c..7e4dfa53007 100644 --- a/Modules/Filtering/QuadEdgeMeshFiltering/include/itkBorderQuadEdgeMeshFilter.h +++ b/Modules/Filtering/QuadEdgeMeshFiltering/include/itkBorderQuadEdgeMeshFilter.h @@ -92,7 +92,8 @@ class ITK_TEMPLATE_EXPORT BorderQuadEdgeMeshFilter : public QuadEdgeMeshToQuadEd using InputMeshType = TInputMesh; using InputMeshConstPointer = typename InputMeshType::ConstPointer; - using InputCoordRepType = typename InputMeshType::CoordRepType; + using InputCoordinateType = typename InputMeshType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputPointType = typename InputMeshType::PointType; using InputTraits = typename InputMeshType::Traits; using InputPointIdentifier = typename InputMeshType::PointIdentifier; @@ -111,7 +112,8 @@ class ITK_TEMPLATE_EXPORT BorderQuadEdgeMeshFilter : public QuadEdgeMeshToQuadEd using OutputMeshType = TOutputMesh; using OutputMeshPointer = typename OutputMeshType::Pointer; - using OutputCoordRepType = typename OutputMeshType::CoordRepType; + using OutputCoordinateType = typename OutputMeshType::CoordRepType; + using OutputCoordRepType = OutputCoordinateType; using OutputPointType = typename OutputMeshType::PointType; using OutputTraits = typename OutputMeshType::Traits; using OutputPointIdentifier = typename OutputMeshType::PointIdentifier; diff --git a/Modules/Filtering/QuadEdgeMeshFiltering/include/itkDelaunayConformingQuadEdgeMeshFilter.h b/Modules/Filtering/QuadEdgeMeshFiltering/include/itkDelaunayConformingQuadEdgeMeshFilter.h index 5a77532e1f8..ff0d929acca 100644 --- a/Modules/Filtering/QuadEdgeMeshFiltering/include/itkDelaunayConformingQuadEdgeMeshFilter.h +++ b/Modules/Filtering/QuadEdgeMeshFiltering/include/itkDelaunayConformingQuadEdgeMeshFilter.h @@ -49,7 +49,8 @@ class ITK_TEMPLATE_EXPORT DelaunayConformingQuadEdgeMeshFilter /** Input types. */ using InputMeshType = TInputMesh; using InputMeshPointer = typename InputMeshType::Pointer; - using InputCoordRepType = typename InputMeshType::CoordRepType; + using InputCoordinateType = typename InputMeshType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputPointType = typename InputMeshType::PointType; using InputPointVectorType = typename InputPointType::VectorType; using InputPointIdentifier = typename InputMeshType::PointIdentifier; @@ -73,7 +74,8 @@ class ITK_TEMPLATE_EXPORT DelaunayConformingQuadEdgeMeshFilter /** Output types. */ using OutputMeshType = TOutputMesh; using OutputMeshPointer = typename OutputMeshType::Pointer; - using OutputCoordRepType = typename OutputMeshType::CoordRepType; + using OutputCoordinateType = typename OutputMeshType::CoordRepType; + using OutputCoordRepType = OutputCoordinateType; using OutputPointType = typename OutputMeshType::PointType; using OutputPointIdentifier = typename OutputMeshType::PointIdentifier; using OutputCellType = typename OutputMeshType::CellType; diff --git a/Modules/Filtering/QuadEdgeMeshFiltering/include/itkParameterizationQuadEdgeMeshFilter.h b/Modules/Filtering/QuadEdgeMeshFiltering/include/itkParameterizationQuadEdgeMeshFilter.h index d9d43c06113..2737291028e 100644 --- a/Modules/Filtering/QuadEdgeMeshFiltering/include/itkParameterizationQuadEdgeMeshFilter.h +++ b/Modules/Filtering/QuadEdgeMeshFiltering/include/itkParameterizationQuadEdgeMeshFilter.h @@ -69,7 +69,8 @@ class ITK_TEMPLATE_EXPORT ParameterizationQuadEdgeMeshFilter using InputMeshType = TInputMesh; using InputMeshPointer = typename InputMeshType::Pointer; using InputMeshConstPointer = typename InputMeshType::ConstPointer; - using InputCoordRepType = typename InputMeshType::CoordRepType; + using InputCoordinateType = typename InputMeshType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputPointType = typename InputMeshType::PointType; using InputPointVectorType = typename InputPointType::VectorType; using InputPointIdentifier = typename InputMeshType::PointIdentifier; @@ -98,7 +99,8 @@ class ITK_TEMPLATE_EXPORT ParameterizationQuadEdgeMeshFilter using OutputMeshType = TOutputMesh; using OutputMeshPointer = typename OutputMeshType::Pointer; using OutputMeshConstPointer = typename OutputMeshType::ConstPointer; - using OutputCoordRepType = typename OutputMeshType::CoordRepType; + using OutputCoordinateType = typename OutputMeshType::CoordRepType; + using OutputCoordRepType = OutputCoordinateType; using OutputPointType = typename OutputMeshType::PointType; using OutputPointIdentifier = typename OutputMeshType::PointIdentifier; using OutputQEType = typename OutputMeshType::QEType; diff --git a/Modules/Filtering/QuadEdgeMeshFiltering/include/itkQuadEdgeMeshParamMatrixCoefficients.h b/Modules/Filtering/QuadEdgeMeshFiltering/include/itkQuadEdgeMeshParamMatrixCoefficients.h index 780a71f2d9a..cbd9c1ae8fe 100644 --- a/Modules/Filtering/QuadEdgeMeshFiltering/include/itkQuadEdgeMeshParamMatrixCoefficients.h +++ b/Modules/Filtering/QuadEdgeMeshFiltering/include/itkQuadEdgeMeshParamMatrixCoefficients.h @@ -34,7 +34,8 @@ class MatrixCoefficients { public: using InputMeshType = TInputMesh; - using InputCoordRepType = typename InputMeshType::CoordRepType; + using InputCoordinateType = typename InputMeshType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputQEType = typename InputMeshType::QEType; MatrixCoefficients() = default; @@ -58,7 +59,8 @@ class ITK_TEMPLATE_EXPORT OnesMatrixCoefficients : public MatrixCoefficients; using InputMeshType = TInputMesh; - using InputCoordRepType = typename InputMeshType::CoordRepType; + using InputCoordinateType = typename InputMeshType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputQEType = typename InputMeshType::QEType; OnesMatrixCoefficients() = default; @@ -87,7 +89,8 @@ class ITK_TEMPLATE_EXPORT InverseEuclideanDistanceMatrixCoefficients : public Ma using Superclass = MatrixCoefficients; using InputMeshType = TInputMesh; - using InputCoordRepType = typename InputMeshType::CoordRepType; + using InputCoordinateType = typename InputMeshType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputPointType = typename InputMeshType::PointType; using InputPointIdentifier = typename InputMeshType::PointIdentifier; using InputQEType = typename InputMeshType::QEType; @@ -129,7 +132,8 @@ class ITK_TEMPLATE_EXPORT ConformalMatrixCoefficients : public MatrixCoefficient using Superclass = MatrixCoefficients; using InputMeshType = TInputMesh; - using InputCoordRepType = typename InputMeshType::CoordRepType; + using InputCoordinateType = typename InputMeshType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputPointType = typename InputMeshType::PointType; using InputPointIdentifier = typename InputMeshType::PointIdentifier; using InputQEType = typename InputMeshType::QEType; @@ -183,7 +187,8 @@ class ITK_TEMPLATE_EXPORT AuthalicMatrixCoefficients : public MatrixCoefficients using Superclass = MatrixCoefficients; using InputMeshType = TInputMesh; - using InputCoordRepType = typename InputMeshType::CoordRepType; + using InputCoordinateType = typename InputMeshType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputPointType = typename InputMeshType::PointType; using InputPointIdentifier = typename InputMeshType::PointIdentifier; using InputQEType = typename InputMeshType::QEType; @@ -239,7 +244,8 @@ class ITK_TEMPLATE_EXPORT IntrinsicMatrixCoefficients : public MatrixCoefficient using Superclass = MatrixCoefficients; using InputMeshType = TInputMesh; - using InputCoordRepType = typename InputMeshType::CoordRepType; + using InputCoordinateType = typename InputMeshType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputQEType = typename InputMeshType::QEType; InputCoordRepType m_Lambda; @@ -274,7 +280,8 @@ class ITK_TEMPLATE_EXPORT HarmonicMatrixCoefficients : public MatrixCoefficients using Superclass = MatrixCoefficients; using InputMeshType = TInputMesh; - using InputCoordRepType = typename InputMeshType::CoordRepType; + using InputCoordinateType = typename InputMeshType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputPointType = typename InputMeshType::PointType; using InputVectorType = typename InputPointType::VectorType; using InputPointIdentifier = typename InputMeshType::PointIdentifier; diff --git a/Modules/IO/MeshBase/include/itkMeshFileReader.h b/Modules/IO/MeshBase/include/itkMeshFileReader.h index 3f2b0dc31d0..247e68ace19 100644 --- a/Modules/IO/MeshBase/include/itkMeshFileReader.h +++ b/Modules/IO/MeshBase/include/itkMeshFileReader.h @@ -97,7 +97,8 @@ class ITK_TEMPLATE_EXPORT MeshFileReader : public MeshSource /** Define output mesh types */ using OutputMeshType = TOutputMesh; - using OutputCoordRepType = typename OutputMeshType::CoordRepType; + using OutputCoordinateType = typename OutputMeshType::CoordRepType; + using OutputCoordRepType = OutputCoordinateType; using OutputPointPixelType = typename OutputMeshType::PixelType; using OutputCellPixelType = typename OutputMeshType::CellPixelType; using OutputPointType = typename OutputMeshType::PointType; diff --git a/Modules/Nonunit/Review/include/itkMultiphaseFiniteDifferenceImageFilter.h b/Modules/Nonunit/Review/include/itkMultiphaseFiniteDifferenceImageFilter.h index 4337c95f518..ed1d7ca0ba9 100644 --- a/Modules/Nonunit/Review/include/itkMultiphaseFiniteDifferenceImageFilter.h +++ b/Modules/Nonunit/Review/include/itkMultiphaseFiniteDifferenceImageFilter.h @@ -180,7 +180,8 @@ class ITK_TEMPLATE_EXPORT MultiphaseFiniteDifferenceImageFilter : public InPlace using InputImageType = TInputImage; using InputImagePointer = typename InputImageType::Pointer; using InputPointType = typename InputImageType::PointType; - using InputCoordRepType = typename InputPointType::CoordRepType; + using InputCoordinateType = typename InputPointType::CoordRepType; + using InputCoordRepType = InputCoordinateType; using InputIndexType = typename InputImageType::IndexType; using InputIndexValueType = typename InputIndexType::IndexValueType; using InputSizeType = typename InputImageType::SizeType;