From 09d66914f42d8491e8f2794e5004d1f037caa330 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 25 Sep 2022 13:51:23 +0200 Subject: [PATCH] - LinePlaneIntersect This is for calculating intersections with slope sprites later. --- source/core/gamefuncs.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/source/core/gamefuncs.h b/source/core/gamefuncs.h index 4301a66ac..69ff3035a 100644 --- a/source/core/gamefuncs.h +++ b/source/core/gamefuncs.h @@ -583,6 +583,21 @@ inline double GetRayIntersect(const DVector3& start1, const DVector3& vect1, con return factor2; } +inline double LinePlaneIntersect(const DVector3& start, const DVector3& trace, const DVector3& ppoint, const DVector3& pvec1, const DVector3& pvec2) +{ + auto normal = pvec1 ^ pvec2; // we do not need a unit vector here. + double dist = normal.dot(ppoint); + double dotStart = normal.dot(start); + double dotTrace = normal.dot(trace); + if (dotTrace == 0) return -FLT_MAX; + return (dist - dotStart) / dotTrace; // we are only interested in the factor +} + +inline double LineHeightIntersect(double startz, double tracez, double dist) +{ + return (dist - startz) / tracez; // we are only interested in the factor +} + inline void alignceilslope(sectortype* sect, const DVector3& pos) { sect->setceilingslope(getslopeval(sect, pos, sect->ceilingz));