diff --git a/include/interpolate_z.h b/include/interpolate_z.h
index 914b76360a112e65484de01c6f8f8b79057f466c..473f25315eaea76ff5506440e41e5a2ed0e9c1fd 100644
--- a/include/interpolate_z.h
+++ b/include/interpolate_z.h
@@ -1,5 +1,6 @@
 #pragma once
 #include <vector>
 struct Point;
+struct Edge;
 
-float interpolateZ(const std::vector<Point> &shape, const Point &p);
\ No newline at end of file
+float interpolateZ(const Edge &e, const Point &p);
diff --git a/src/utilities/interpolate_z.cpp b/src/utilities/interpolate_z.cpp
index b822762bba03688c42a7066b81371d781d26c088..d375900abf59ab7aada34f7b5acf888ae943c26f 100644
--- a/src/utilities/interpolate_z.cpp
+++ b/src/utilities/interpolate_z.cpp
@@ -1,26 +1,20 @@
 #include <interpolate_z.h>
 #include <limits>
 #include <point.h>
+#include <edge.h>
 #include <cmath>
 
+float dist2D(const Point &p) {
+	return sqrt(p.x * p.x + p.y * p.y);
+}
 
-float interpolateZ(const std::vector<Point> &shape, const Point &p) {
-    // create direction vectors
-    const Point v1 = -(shape[0] - shape[1]);
-    const Point v2 = -(shape[0] - shape[2]);
-
-    const Point &origin = shape[0];
-
-    float t = (p.y * v1.x - origin.y * v1.x - p.x * v1.y + origin.x * v1.y) / (v1.x * v2.y - v1.y * v2.x);
-    float s = (p.y - origin.y - t * v2.y) / v1.y;
-
-    if (s == - std::numeric_limits<float>::infinity() || std::isnan(s)) {
-        s = 0;
-    }
+float interpolateZ(const Edge &e, const Point &p) {
+	const float p1Dist = dist2D(e.p1);
+	const float p2Dist = dist2D(e.p2);
 
-    if (t == - std::numeric_limits<float>::infinity() || std::isnan(t)) {
-       t = 0; 
-    }
+	const float b = (p2Dist * e.p1.z - p1Dist * e.p2.z) / (p2Dist - p1Dist);
+	
+	const float m = (e.p2.z - b) / p2Dist;
 
-    return origin.z + v1.z * s + v2.z * t;
+	return m * dist2D(p) + b;
 }