diff --git a/gerbview/rs274d.cpp b/gerbview/rs274d.cpp
index a1f9f68ee2..91b0be2c45 100644
--- a/gerbview/rs274d.cpp
+++ b/gerbview/rs274d.cpp
@@ -25,14 +25,15 @@
  * @brief functions to read the rs274d commands from a rs274d/rs274x file
  */
 
+#include <cmath>
 
+#include <geometry/geometry_utils.h>
 #include <gerbview.h>
 #include <gerbview_frame.h>
-#include <trigo.h>
 #include <gerber_file_image.h>
+#include <trigo.h>
 #include <X2_gerber_attributes.h>
 
-#include <cmath>
 
 /* Gerber: NOTES about some important commands found in RS274D and RS274X (G codes).
  * Some are now deprecated, but deprecated commands must be known by the Gerber reader
diff --git a/include/board_item.h b/include/board_item.h
index 8708950ab7..1fb0acbfc5 100644
--- a/include/board_item.h
+++ b/include/board_item.h
@@ -30,7 +30,7 @@
 #include <layer_ids.h>
 #include <lseq.h>
 #include <lset.h>
-#include <geometry/geometry_utils.h>
+#include <geometry/approximation.h>
 #include <stroke_params.h>
 #include <geometry/eda_angle.h>
 
diff --git a/include/eda_shape.h b/include/eda_shape.h
index 9d9f6dac4f..e41ebb65ce 100644
--- a/include/eda_shape.h
+++ b/include/eda_shape.h
@@ -27,7 +27,7 @@
 
 #include <trigo.h>
 #include <geometry/shape_poly_set.h>
-#include <geometry/geometry_utils.h>
+#include <geometry/approximation.h>
 #include <properties/property.h>
 #include <stroke_params.h>
 
diff --git a/libs/kimath/include/convert_basic_shapes_to_polygon.h b/libs/kimath/include/convert_basic_shapes_to_polygon.h
index 7c989501a8..e87f3150e7 100644
--- a/libs/kimath/include/convert_basic_shapes_to_polygon.h
+++ b/libs/kimath/include/convert_basic_shapes_to_polygon.h
@@ -25,8 +25,8 @@
 #ifndef CONVERT_BASIC_SHAPES_TO_POLYGON_H
 #define CONVERT_BASIC_SHAPES_TO_POLYGON_H
 
+#include <geometry/approximation.h>
 #include <geometry/shape_poly_set.h>
-#include <geometry/geometry_utils.h>
 
 
 // The chamfer positions of chamfered rect shape.
diff --git a/libs/kimath/include/geometry/approximation.h b/libs/kimath/include/geometry/approximation.h
new file mode 100644
index 0000000000..e22f974816
--- /dev/null
+++ b/libs/kimath/include/geometry/approximation.h
@@ -0,0 +1,35 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2024 KiCad Developers, see AUTHORS.txt for contributors.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, you may find one here:
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ * or you may search the http://www.gnu.org website for the version 2 license,
+ * or you may write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+ */
+
+#pragma once
+
+/**
+ * When approximating an arc or circle, should the error be placed on the outside
+ * or inside of the curve?  (Generally speaking filled shape errors go on the inside
+ * and knockout errors go on the outside.  This preserves minimum clearances.)
+ */
+enum ERROR_LOC
+{
+    ERROR_OUTSIDE = 0,
+    ERROR_INSIDE
+};
\ No newline at end of file
diff --git a/libs/kimath/include/geometry/geometry_utils.h b/libs/kimath/include/geometry/geometry_utils.h
index 43ec211343..4963aeb6f9 100644
--- a/libs/kimath/include/geometry/geometry_utils.h
+++ b/libs/kimath/include/geometry/geometry_utils.h
@@ -36,13 +36,6 @@
 #include <math/box2.h>
 #include <geometry/eda_angle.h>
 
-/**
- * When approximating an arc or circle, should the error be placed on the outside
- * or inside of the curve?  (Generally speaking filled shape errors go on the inside
- * and knockout errors go on the outside.  This preserves minimum clearances.)
- */
-enum ERROR_LOC { ERROR_OUTSIDE = 0, ERROR_INSIDE };
-
 /**
  * @return the number of segments to approximate a arc by segments
  * with a given max error (this number is >= 1)
diff --git a/libs/kimath/include/geometry/shape.h b/libs/kimath/include/geometry/shape.h
index 57c70ebf01..1cd3c916bd 100644
--- a/libs/kimath/include/geometry/shape.h
+++ b/libs/kimath/include/geometry/shape.h
@@ -30,7 +30,7 @@
 #include <vector>
 #include <geometry/seg.h>
 #include <geometry/eda_angle.h>
-#include <geometry/geometry_utils.h>
+#include <geometry/approximation.h>
 #include <math/vector2d.h>
 #include <math/box2.h>
 #include <wx/string.h>
diff --git a/pcbnew/pcb_track.cpp b/pcbnew/pcb_track.cpp
index 67367444b4..961f6305c4 100644
--- a/pcbnew/pcb_track.cpp
+++ b/pcbnew/pcb_track.cpp
@@ -23,13 +23,15 @@
  * or you may write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
  */
+
+#include "pcb_track.h"
+
 #include <pcb_base_frame.h>
 #include <core/mirror.h>
 #include <connectivity/connectivity_data.h>
 #include <board.h>
 #include <board_design_settings.h>
 #include <convert_basic_shapes_to_polygon.h>
-#include <pcb_track.h>
 #include <base_units.h>
 #include <layer_range.h>
 #include <lset.h>
@@ -37,6 +39,7 @@
 #include <view/view.h>
 #include <settings/color_settings.h>
 #include <settings/settings_manager.h>
+#include <geometry/geometry_utils.h>
 #include <geometry/seg.h>
 #include <geometry/shape_segment.h>
 #include <geometry/shape_circle.h>
diff --git a/pcbnew/router/pns_tool_base.cpp b/pcbnew/router/pns_tool_base.cpp
index 8e344c1b47..bc6f6a0a22 100644
--- a/pcbnew/router/pns_tool_base.cpp
+++ b/pcbnew/router/pns_tool_base.cpp
@@ -24,6 +24,7 @@
 using namespace std::placeholders;
 
 #include <gal/graphics_abstraction_layer.h>
+#include <geometry/geometry_utils.h>
 #include <pcb_painter.h>
 #include <pcbnew_settings.h>
 #include <view/view_controls.h>