From 4ed886bbf2362162d3c9094b9cd9fddf44dc2aab Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 15 Feb 2009 16:22:49 +0000 Subject: [PATCH] Fixed infinite recursion in Quaternion constructor (http://www.opentk.com/node/663). --- Source/OpenTK/Math/Quaternion.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/OpenTK/Math/Quaternion.cs b/Source/OpenTK/Math/Quaternion.cs index 24d29130..6ea43ecd 100644 --- a/Source/OpenTK/Math/Quaternion.cs +++ b/Source/OpenTK/Math/Quaternion.cs @@ -51,7 +51,6 @@ namespace OpenTK.Math /// The vector part /// The w part public Quaternion(Vector3 v, float w) - : this(v.X, v.Y, v.Z, w) { this.xyz = v; this.w = w;