mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 19:45:29 +00:00
Fixed infinite recursion in Quaternion constructor (http://www.opentk.com/node/663).
This commit is contained in:
parent
18a6ad3247
commit
4ed886bbf2
|
@ -51,7 +51,6 @@ namespace OpenTK.Math
|
|||
/// <param name="v">The vector part</param>
|
||||
/// <param name="w">The w part</param>
|
||||
public Quaternion(Vector3 v, float w)
|
||||
: this(v.X, v.Y, v.Z, w)
|
||||
{
|
||||
this.xyz = v;
|
||||
this.w = w;
|
||||
|
|
Loading…
Reference in a new issue