diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-09-19 13:15:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-19 13:15:36 +0200 |
commit | 861f1d34909f3fe0fe5f797db14df75a1ec1a635 (patch) | |
tree | 5c91a02e4fabb3b0b47f1bebf7be24b72e97a22b /core/math/camera_matrix.cpp | |
parent | 24c76f177e5702844cabef98f87ded9aa89a67e6 (diff) | |
parent | 13b630eb0ca70cb17cadd59285d2d1146fdfb3dd (diff) |
Merge pull request #11412 from ISylvox/seperate-to-separate
Fix Typo: 'Seperate' to 'Separate'
[ci skip]
Diffstat (limited to 'core/math/camera_matrix.cpp')
-rw-r--r-- | core/math/camera_matrix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/camera_matrix.cpp b/core/math/camera_matrix.cpp index 7132b6573e..2c587762e8 100644 --- a/core/math/camera_matrix.cpp +++ b/core/math/camera_matrix.cpp @@ -577,7 +577,7 @@ real_t CameraMatrix::get_fov() const { if ((matrix[8] == 0) && (matrix[9] == 0)) { return Math::rad2deg(Math::acos(Math::abs(right_plane.normal.x))) * 2.0; } else { - // our frustum is asymetrical need to calculate the left planes angle seperately.. + // our frustum is asymmetrical need to calculate the left planes angle separately.. Plane left_plane = Plane(matrix[3] + matrix[0], matrix[7] + matrix[4], matrix[11] + matrix[8], |