diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-08-29 19:57:43 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-08-29 19:57:43 +0100 |
commit | 54ee39ffd75421c4489d2b473de4a65ff541f21c (patch) | |
tree | d7db1f3acc5e8aa607fd5cef3ec249c71dc8a3cf /lib/ray.cpp | |
parent | Generic solution for streaming collections that can be spanned (diff) | |
download | ilt-54ee39ffd75421c4489d2b473de4a65ff541f21c.tar.bz2 ilt-54ee39ffd75421c4489d2b473de4a65ff541f21c.tar.xz ilt-54ee39ffd75421c4489d2b473de4a65ff541f21c.zip |
Ray function a calculate how close it passes to a line defined by 2 points
Diffstat (limited to 'lib/ray.cpp')
-rw-r--r-- | lib/ray.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/ray.cpp b/lib/ray.cpp new file mode 100644 index 0000000..1e30ae4 --- /dev/null +++ b/lib/ray.cpp @@ -0,0 +1,18 @@ +#include "ray.hpp" + +float +Ray::distanceToLine(const glm::vec3 & p1, const glm::vec3 & e1) const +{ + // https://en.wikipedia.org/wiki/Skew_lines + const auto diff = p1 - e1; + const auto d1 = glm::normalize(diff); + const auto &p2 = start, &d2 = direction; + const auto n = glm::cross(d1, d2); + const auto n2 = glm::cross(d2, n); + const auto c1 = p1 + (glm::dot((p2 - p1), n2) / glm::dot(d1, n2)) * d1; + const auto difflength = glm::length(diff); + if (glm::length(c1 - p1) > difflength || glm::length(c1 - e1) > difflength) { + return std::numeric_limits<float>::infinity(); + } + return glm::abs(glm::dot(n, p1 - p2)); +} |