From 5c3c0546f66cfd9b8efb48d28c88cf0c5633225c Mon Sep 17 00:00:00 2001 From: marauder2k7 Date: Wed, 4 Mar 2026 17:48:58 +0000 Subject: [PATCH] Update mPoint3.h missed convolve and convolveInverse --- Engine/source/math/mPoint3.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Engine/source/math/mPoint3.h b/Engine/source/math/mPoint3.h index 7e7567f92..895454c05 100644 --- a/Engine/source/math/mPoint3.h +++ b/Engine/source/math/mPoint3.h @@ -592,16 +592,12 @@ inline void Point3F::neg() inline void Point3F::convolve(const Point3F& c) { - x *= c.x; - y *= c.y; - z *= c.z; + GetFloat3().mul(*this, c, *this); } inline void Point3F::convolveInverse(const Point3F& c) { - x /= c.x; - y /= c.y; - z /= c.z; + GetFloat3().div(*this, c, *this); } inline F32 Point3F::lenSquared() const