From d8f61abae79a3154d5e6dda98713295d1b850e95 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 9 Apr 2023 12:42:09 +0100 Subject: Add helper to create a Ray from two points --- lib/ray.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/ray.cpp') diff --git a/lib/ray.cpp b/lib/ray.cpp index acbb807..f9e3311 100644 --- a/lib/ray.cpp +++ b/lib/ray.cpp @@ -1,6 +1,12 @@ #include "ray.hpp" #include +Ray +Ray::fromPoints(glm::vec3 start, glm::vec3 p) +{ + return {start, glm::normalize(p - start)}; +} + float Ray::distanceToLine(const glm::vec3 & p1, const glm::vec3 & e1) const { -- cgit v1.2.3