diff options
| author | Dor Shapira <[email protected]> | 2023-01-28 20:26:41 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-28 19:26:41 +0100 |
| commit | df5a736c009d98187e703a55c604345e12777bb7 (patch) | |
| tree | 5fa373971564cb3b40177d271b08319acac5b503 /src/raymath.h | |
| parent | 7fff1ba0b035cc4f9ac5d1711686299b074baea1 (diff) | |
| download | raylib-df5a736c009d98187e703a55c604345e12777bb7.tar.gz raylib-df5a736c009d98187e703a55c604345e12777bb7.zip | |
fix typo (#2899)
patrix=>matrix
Diffstat (limited to 'src/raymath.h')
| -rw-r--r-- | src/raymath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raymath.h b/src/raymath.h index 435ea3c6..eb244ad4 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -903,7 +903,7 @@ RMAPI Vector3 Vector3Unproject(Vector3 source, Matrix projection, Matrix view) { Vector3 result = { 0 }; - // Calculate unproject matrix (multiply view patrix by projection matrix) and invert it + // Calculate unproject matrix (multiply view matrix by projection matrix) and invert it Matrix matViewProj = { // MatrixMultiply(view, projection); view.m0*projection.m0 + view.m1*projection.m4 + view.m2*projection.m8 + view.m3*projection.m12, view.m0*projection.m1 + view.m1*projection.m5 + view.m2*projection.m9 + view.m3*projection.m13, |
