aboutsummaryrefslogtreecommitdiff
path: root/src/core.c
diff options
context:
space:
mode:
authorvictorfisac <victorfisac@gmail.com>2016-01-11 15:59:26 +0100
committervictorfisac <victorfisac@gmail.com>2016-01-11 15:59:26 +0100
commit4cc394c376c83926da67afe14855d2a3e2b06cfd (patch)
treedad410c2320a3a2b021c724d3b512a17d83cdf5d /src/core.c
parent8eb6fc5612da86e4fc196ed9719949748ed08d85 (diff)
downloadraylib-4cc394c376c83926da67afe14855d2a3e2b06cfd.tar.gz
raylib-4cc394c376c83926da67afe14855d2a3e2b06cfd.zip
Added world to screen conversion
- Added function WorldToScreen(...). - Added world to screen example. - Review GetMouseRay() comment. - Removed deprecated lighting functions from raylib header.
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c30
1 files changed, 29 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index f1445cce..8b61aaf7 100644
--- a/src/core.c
+++ b/src/core.c
@@ -791,7 +791,7 @@ int StorageLoadValue(int position)
return value;
}
-// Gives the ray trace from mouse position
+// Returns a ray trace from mouse position
//http://www.songho.ca/opengl/gl_transform.html
//http://www.songho.ca/opengl/gl_matrix.html
//http://www.sjbaker.org/steve/omniv/matrices_can_be_your_friends.html
@@ -857,6 +857,34 @@ Ray GetMouseRay(Vector2 mousePosition, Camera camera)
return ray;
}
+// Returns the screen space position from a 3d world space position
+Vector2 WorldToScreen(Vector3 position, Camera camera)
+{
+ // Calculate projection matrix (from perspective instead of frustum
+ Matrix matProj = MatrixPerspective(45.0f, (float)((float)GetScreenWidth() / (float)GetScreenHeight()), 0.01f, 1000.0f);
+
+ // Calculate view matrix from camera look at (and transpose it)
+ Matrix matView = MatrixLookAt(camera.position, camera.target, camera.up);
+ MatrixTranspose(&matView);
+
+ // Convert world position vector to quaternion
+ Quaternion worldPos = { position.x, position.y, position.z, 1.0f };
+
+ // Transform world position to view
+ QuaternionTransform(&worldPos, matView);
+
+ // Transform result to projection (clip space position)
+ QuaternionTransform(&worldPos, matProj);
+
+ // Calculate normalized device coordinates (inverted y)
+ Vector3 ndcPos = { worldPos.x / worldPos.w, -worldPos.y / worldPos.w, worldPos.z / worldPos.z };
+
+ // Calculate 2d screen position vector
+ Vector2 screenPosition = { (ndcPos.x + 1.0f) / 2.0f * GetScreenWidth(), (ndcPos.y + 1.0f) / 2.0f * GetScreenHeight() };
+
+ return screenPosition;
+}
+
//----------------------------------------------------------------------------------
// Module Functions Definition - Input (Keyboard, Mouse, Gamepad) Functions
//----------------------------------------------------------------------------------