summaryrefslogtreecommitdiffstats
path: root/src/Matrix4.h
diff options
context:
space:
mode:
authorHaoTNN <haotnn@gmail.com>2015-06-03 01:08:57 +0200
committerHaoTNN <haotnn@gmail.com>2015-06-03 01:08:57 +0200
commit3142598dee31acc23c738a1a728638665c8940b8 (patch)
tree2eb837ed785678d536d677ff5020fabca089f2e5 /src/Matrix4.h
parentMerge remote-tracking branch 'upstream/master' (diff)
parentMerge pull request #2182 from birkett/master (diff)
downloadcuberite-3142598dee31acc23c738a1a728638665c8940b8.tar
cuberite-3142598dee31acc23c738a1a728638665c8940b8.tar.gz
cuberite-3142598dee31acc23c738a1a728638665c8940b8.tar.bz2
cuberite-3142598dee31acc23c738a1a728638665c8940b8.tar.lz
cuberite-3142598dee31acc23c738a1a728638665c8940b8.tar.xz
cuberite-3142598dee31acc23c738a1a728638665c8940b8.tar.zst
cuberite-3142598dee31acc23c738a1a728638665c8940b8.zip
Diffstat (limited to 'src/Matrix4.h')
-rw-r--r--src/Matrix4.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Matrix4.h b/src/Matrix4.h
index 61ea60bfd..0558fa5f3 100644
--- a/src/Matrix4.h
+++ b/src/Matrix4.h
@@ -76,8 +76,8 @@ public:
inline void RotateX(T a_RX)
{
- T sx = (T) sin(a_RX * M_PI / 180);
- T cx = (T) cos(a_RX * M_PI / 180);
+ T sx = static_cast<T>(sin(a_RX * M_PI / 180));
+ T cx = static_cast<T>(cos(a_RX * M_PI / 180));
Identity();
@@ -87,8 +87,8 @@ public:
inline void RotateY(T a_RY)
{
- T sy = (T) sin(a_RY * M_PI / 180);
- T cy = (T) cos(a_RY * M_PI / 180);
+ T sy = static_cast<T>(sin(a_RY * M_PI / 180));
+ T cy = static_cast<T>(cos(a_RY * M_PI / 180));
Identity();