summaryrefslogtreecommitdiff
path: root/core/math
diff options
context:
space:
mode:
authorIndah Sylvia <ISylvox@yahoo.com>2017-09-19 15:51:00 +0700
committerIndah Sylvia <ISylvox@yahoo.com>2017-09-19 15:51:00 +0700
commit13b630eb0ca70cb17cadd59285d2d1146fdfb3dd (patch)
tree23cfec9810c3a5991baffee47c6d1fbc85e401e5 /core/math
parent3d06957f12ba5c04702f3db980af9c07142e7886 (diff)
Fixed Typo: 'Seperate' to 'Separate'
Diffstat (limited to 'core/math')
-rw-r--r--core/math/camera_matrix.cpp2
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],