From 6a1df3dfbae98a05e74c646cc216fbc19ffdb6d6 Mon Sep 17 00:00:00 2001
From: Dan Goodliffe <dan@randomdan.homeip.net>
Date: Sun, 7 Jan 2024 13:04:31 +0000
Subject: Template Ray on position type

---
 gfx/gl/camera.cpp | 2 +-
 gfx/gl/camera.h   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'gfx')

diff --git a/gfx/gl/camera.cpp b/gfx/gl/camera.cpp
index 0bc911a..fb711dd 100644
--- a/gfx/gl/camera.cpp
+++ b/gfx/gl/camera.cpp
@@ -13,7 +13,7 @@ Camera::Camera(GlobalPosition3D pos, Angle fov, Angle aspect, GlobalDistance zNe
 	updateView();
 }
 
-Ray
+Ray<GlobalPosition3D>
 Camera::unProject(const ScreenRelCoord & mouse) const
 {
 	static constexpr const glm::vec4 screen {0, 0, 1, 1};
diff --git a/gfx/gl/camera.h b/gfx/gl/camera.h
index eca7b8f..8d53261 100644
--- a/gfx/gl/camera.h
+++ b/gfx/gl/camera.h
@@ -15,7 +15,7 @@ public:
 		return viewProjection;
 	}
 
-	[[nodiscard]] Ray unProject(const ScreenRelCoord &) const;
+	[[nodiscard]] Ray<GlobalPosition3D> unProject(const ScreenRelCoord &) const;
 
 	void
 	setPosition(const GlobalPosition3D & p)
-- 
cgit v1.2.3