mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-03-29 18:06:52 +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="v">The vector part</param>
|
||||||
/// <param name="w">The w part</param>
|
/// <param name="w">The w part</param>
|
||||||
public Quaternion(Vector3 v, float w)
|
public Quaternion(Vector3 v, float w)
|
||||||
: this(v.X, v.Y, v.Z, w)
|
|
||||||
{
|
{
|
||||||
this.xyz = v;
|
this.xyz = v;
|
||||||
this.w = w;
|
this.w = w;
|
||||||
|
|
Loading…
Reference in a new issue