diff --git a/MantleAPI/include/MantleAPI/Common/i_geometry_helper.h b/MantleAPI/include/MantleAPI/Common/i_geometry_helper.h
index 49992f81cb7520f4380487e0029e146b55ea1441..32c35dd019b0523eb35219736c9dfaa386736342 100644
--- a/MantleAPI/include/MantleAPI/Common/i_geometry_helper.h
+++ b/MantleAPI/include/MantleAPI/Common/i_geometry_helper.h
@@ -41,23 +41,23 @@ public:
 
   /// @brief Transforms world polyline positions to local coordinate system.
   /// @param polyline_points world polyline points to be transformed
-  /// @param position local system position
-  /// @param orientation local system orientation
+  /// @param local_origin  local coordinate system origin
+  /// @param local_orientation local system orientation
   /// @return converted polyline points
   virtual std::vector<Vec3<units::length::meter_t>> TransformPolylinePointsFromWorldToLocal(
       const std::vector<Vec3<units::length::meter_t>>& polyline_points,
-      const Vec3<units::length::meter_t>& position,
-      const Orientation3<units::angle::radian_t>& orientation) const = 0;
+      const Vec3<units::length::meter_t>& local_origin,
+      const Orientation3<units::angle::radian_t>& local_orientation) const = 0;
 
   /// @brief Transforms world position to local coordinate system.
-  /// @param point_position world point position to be transformed
-  /// @param position local system position
-  /// @param orientation local system orientation
+  /// @param world_position world position to be transformed
+  /// @param local_origin  local coordinate system origin
+  /// @param local_orientation local system orientation
   /// @return transformed point
-  virtual Vec3<units::length::meter_t> TransformPointPositionFromWorldToLocal(
-      const Vec3<units::length::meter_t>& point_position,
-      const Vec3<units::length::meter_t>& position,
-      const Orientation3<units::angle::radian_t>& orientation) const = 0;
+  virtual Vec3<units::length::meter_t> TransformPositionFromWorldToLocal(
+      const Vec3<units::length::meter_t>& world_position,
+      const Vec3<units::length::meter_t>& local_origin,
+      const Orientation3<units::angle::radian_t>& local_orientation) const = 0;
 };
 
 }  // namespace mantle_api
diff --git a/MantleAPI/test/MantleAPI/Test/test_utils.h b/MantleAPI/test/MantleAPI/Test/test_utils.h
index e6428c798d918232d3d2bb7605990655b04cbfda..6fbc7e7296421f07101c6a09a37f3369674fdbfb 100644
--- a/MantleAPI/test/MantleAPI/Test/test_utils.h
+++ b/MantleAPI/test/MantleAPI/Test/test_utils.h
@@ -50,18 +50,18 @@ public:
       const Vec3<units::length::meter_t>& position,
       const Orientation3<units::angle::radian_t>& orientation) const
   {
-    // do not translate but return original points
+    // do not transform but return original points
     std::ignore = position;
     std::ignore = orientation;
     return polyline_points;
   }
 
-  virtual Vec3<units::length::meter_t> TransformPointPositionFromWorldToLocal(
+  virtual Vec3<units::length::meter_t> TransformPositionFromWorldToLocal(
       const Vec3<units::length::meter_t>& point_position,
       const Vec3<units::length::meter_t>& position,
       const Orientation3<units::angle::radian_t>& orientation) const
   {
-    // do not translate but return original points
+    // do not transform but return original points
     std::ignore = position;
     std::ignore = orientation;
     return point_position;