From 8da0fb06c9fe8bef209c5dd7522650e34a5b57ea Mon Sep 17 00:00:00 2001 From: realstealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Wed, 16 Oct 2024 20:13:44 +0530 Subject: [PATCH] docs: change 3d to 2d --- include/Camera2D.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Camera2D.hpp b/include/Camera2D.hpp index ee8cd1f4..b468c6b0 100644 --- a/include/Camera2D.hpp +++ b/include/Camera2D.hpp @@ -48,7 +48,7 @@ class Camera2D : public ::Camera2D { Vector2 GetScreenToWorld(::Vector2 position) const { return ::GetScreenToWorld2D(position, *this); } /** - * Returns the screen space position for a 3d world space position + * Returns the screen space position for a 2d world space position */ Vector2 GetWorldToScreen(::Vector2 position) const { return ::GetWorldToScreen2D(position, *this); } protected: