From f7a9236caa41eb0c7da8da2ce124a216d69e92f9 Mon Sep 17 00:00:00 2001 From: Niels Dekker Date: Tue, 3 Dec 2024 16:55:59 +0100 Subject: [PATCH] STYLE: Replace `...CoordRepType` with `...CoordinateType` in tests Follow-up to pull request https://github.com/InsightSoftwareConsortium/ITK/pull/4997 commit 324eaf15d17dc1000df14aa9ba4f6e79d9ab1c15 "STYLE: Replace CoordRepType with CoordinateType in tests" --- .../test/itkConicShellInteriorExteriorSpatialFunctionTest.cxx | 4 ++-- Modules/Core/Common/test/itkFrustumSpatialFunctionTest.cxx | 4 ++-- .../test/itkTorusInteriorExteriorSpatialFunctionTest.cxx | 4 ++-- .../test/itkCleanQuadEdgeMeshFilterTest.cxx | 2 +- ...anDeformationQuadEdgeMeshFilterWithSoftConstraintsTest.cxx | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) 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());