From d050252bab37df9f8884d5b1668f74acce832cbd Mon Sep 17 00:00:00 2001 From: Samuel Lemaitre Date: Fri, 30 Sep 2016 15:07:48 +0200 Subject: [PATCH] Fix wrong obsolete message Fix wrong obsolete message for method "public static Matrix4 Rotate(Quaternion q)" from CreateRotation to CreateFromQuaternion --- src/OpenTK/Math/Matrix4.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenTK/Math/Matrix4.cs b/src/OpenTK/Math/Matrix4.cs index d62598c..e0fd23c 100644 --- a/src/OpenTK/Math/Matrix4.cs +++ b/src/OpenTK/Math/Matrix4.cs @@ -1157,7 +1157,7 @@ namespace OpenTK /// /// the quaternion /// A rotation matrix - [Obsolete("Use CreateRotation instead.")] + [Obsolete("Use CreateFromQuaternion instead.")] public static Matrix4 Rotate(Quaternion q) { return CreateFromQuaternion(q); -- 2.7.4