Fixed infinite recursion in Quaternion constructor (http://www.opentk.com/node/663).

This commit is contained in:
the_fiddler 2009-02-15 16:22:49 +00:00
parent 18a6ad3247
commit 4ed886bbf2

View file

@ -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;