diff --git a/Modules/Core/Common/test/itkConicShellInteriorExteriorSpatialFunctionTest.cxx b/Modules/Core/Common/test/itkConicShellInteriorExteriorSpatialFunctionTest.cxx index f7533b28865..c994cfcedf2 100644 --- a/Modules/Core/Common/test/itkConicShellInteriorExteriorSpatialFunctionTest.cxx +++ b/Modules/Core/Common/test/itkConicShellInteriorExteriorSpatialFunctionTest.cxx @@ -31,10 +31,10 @@ itkConicShellInteriorExteriorSpatialFunctionTest(int, char *[]) constexpr unsigned int PointDimension = 3; // Define the point coordinate representation type - using PointCoordRepType = float; + using PointCoordinateType = float; // Define the point type - using PointType = itk::Point; + using PointType = itk::Point; // Define the type for the conic spatial function using ConicShellInteriorExteriorSpatialFunctionType = diff --git a/Modules/Core/Common/test/itkFrustumSpatialFunctionTest.cxx b/Modules/Core/Common/test/itkFrustumSpatialFunctionTest.cxx index 067af08df4f..4f6fdd1e83a 100644 --- a/Modules/Core/Common/test/itkFrustumSpatialFunctionTest.cxx +++ b/Modules/Core/Common/test/itkFrustumSpatialFunctionTest.cxx @@ -29,10 +29,10 @@ itkFrustumSpatialFunctionTest(int, char *[]) constexpr unsigned int PointDimension = 3; // Define the point coordinate representation type - using PointCoordRepType = float; + using PointCoordinateType = float; // Define the point type - using PointType = itk::Point; + using PointType = itk::Point; // Define the type for the frustum spatial function using FrustumSpatialFunctionType = itk::FrustumSpatialFunction; diff --git a/Modules/Core/Common/test/itkTorusInteriorExteriorSpatialFunctionTest.cxx b/Modules/Core/Common/test/itkTorusInteriorExteriorSpatialFunctionTest.cxx index e35ed14a5a3..cfdf46e2660 100644 --- a/Modules/Core/Common/test/itkTorusInteriorExteriorSpatialFunctionTest.cxx +++ b/Modules/Core/Common/test/itkTorusInteriorExteriorSpatialFunctionTest.cxx @@ -28,10 +28,10 @@ itkTorusInteriorExteriorSpatialFunctionTest(int, char *[]) constexpr unsigned int PointDimension = 3; // Define the point coordinate representation type - using PointCoordRepType = float; + using PointCoordinateType = float; // Define the point type - using PointType = itk::Point; + using PointType = itk::Point; // Define the type for the torus spatial function using TorusInteriorExteriorSpatialFunctionType = itk::TorusInteriorExteriorSpatialFunction; diff --git a/Modules/Filtering/QuadEdgeMeshFiltering/test/itkCleanQuadEdgeMeshFilterTest.cxx b/Modules/Filtering/QuadEdgeMeshFiltering/test/itkCleanQuadEdgeMeshFilterTest.cxx index 9e7d83ea18b..84d0869f5c4 100644 --- a/Modules/Filtering/QuadEdgeMeshFiltering/test/itkCleanQuadEdgeMeshFilterTest.cxx +++ b/Modules/Filtering/QuadEdgeMeshFiltering/test/itkCleanQuadEdgeMeshFilterTest.cxx @@ -66,7 +66,7 @@ itkCleanQuadEdgeMeshFilterTest(int argc, char * argv[]) filter->SetInput(mesh); - typename CleanFilterType::InputCoordRepType absTol{}; + typename CleanFilterType::InputCoordinateType absTol{}; filter->SetAbsoluteTolerance(absTol); ITK_TEST_SET_GET_VALUE(absTol, filter->GetAbsoluteTolerance()); diff --git a/Modules/Filtering/QuadEdgeMeshFiltering/test/itkLaplacianDeformationQuadEdgeMeshFilterWithSoftConstraintsTest.cxx b/Modules/Filtering/QuadEdgeMeshFiltering/test/itkLaplacianDeformationQuadEdgeMeshFilterWithSoftConstraintsTest.cxx index 25135a1b94e..9c8ed0bace2 100644 --- a/Modules/Filtering/QuadEdgeMeshFiltering/test/itkLaplacianDeformationQuadEdgeMeshFilterWithSoftConstraintsTest.cxx +++ b/Modules/Filtering/QuadEdgeMeshFiltering/test/itkLaplacianDeformationQuadEdgeMeshFilterWithSoftConstraintsTest.cxx @@ -57,7 +57,7 @@ itkLaplacianDeformationQuadEdgeMeshFilterWithSoftConstraintsTest(int argc, char filter->SetInput(reader->GetOutput()); filter->SetOrder(1); - typename FilterType::OutputCoordRepType lambda = 1.0; + typename FilterType::OutputCoordinateType lambda = 1.0; filter->SetLambda(lambda); ITK_TEST_SET_GET_VALUE(lambda, filter->GetLambda());