From 4b352e43f09670903e7b2ea3ea13802255df7223 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 8 Jul 2012 00:51:29 +0200 Subject: [PATCH] Doc: @todo++ --- src/Math/Matrix4.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Math/Matrix4.h b/src/Math/Matrix4.h index af1f7486f..d9ce27269 100644 --- a/src/Math/Matrix4.h +++ b/src/Math/Matrix4.h @@ -62,6 +62,8 @@ template class Matrix4: public Matrix<4, T> { * @brief Rotation matrix * @param angle Rotation angle (counterclockwise, in radians) * @param vec Rotation vector + * + * @todo optimize - Assume the vectors are normalized? */ static Matrix4 rotation(T angle, const Vector3& vec) { Vector3 vn = vec.normalized();