mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 11:05:40 +00:00
Fix wrong obsolete message
Fix wrong obsolete message for method "public static Matrix4 Rotate(Quaternion q)" from CreateRotation to CreateFromQuaternion
This commit is contained in:
parent
19eee6f3a5
commit
d050252bab
|
@ -1157,7 +1157,7 @@ namespace OpenTK
|
|||
/// </summary>
|
||||
/// <param name="q">the quaternion</param>
|
||||
/// <returns>A rotation matrix</returns>
|
||||
[Obsolete("Use CreateRotation instead.")]
|
||||
[Obsolete("Use CreateFromQuaternion instead.")]
|
||||
public static Matrix4 Rotate(Quaternion q)
|
||||
{
|
||||
return CreateFromQuaternion(q);
|
||||
|
|
Loading…
Reference in a new issue