From a5e263e340ee8b371103598a076a9a52760a7eeb Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Mon, 25 Apr 2022 13:52:22 +0200
Subject: [PATCH] [MaL] Add non-const version of Point3d::asEigenVector3d() to
 omit convertings in user code.

---
 MathLib/Point3d.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MathLib/Point3d.h b/MathLib/Point3d.h
index 252a74c241d..2fb478b34cf 100644
--- a/MathLib/Point3d.h
+++ b/MathLib/Point3d.h
@@ -65,6 +65,7 @@ public:
     double* data() { return x_.data(); }
 
     Eigen::Vector3d const& asEigenVector3d() const { return x_; }
+    Eigen::Vector3d& asEigenVector3d() { return x_; }
 
 private:
     Eigen::Vector3d x_;
-- 
GitLab