From 276675fd9cb1ee2894e95b16e06276e43af6c71c Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sat, 1 Aug 2009 14:24:47 +0000 Subject: [PATCH] Merged fix for bug [#1060]: "Wrong XML Comment on the W property in Vector4[d]". --- Source/OpenTK/Math/Vector4.cs | 2 +- Source/OpenTK/Math/Vector4d.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/OpenTK/Math/Vector4.cs b/Source/OpenTK/Math/Vector4.cs index 59ea2c10..018a6dcc 100644 --- a/Source/OpenTK/Math/Vector4.cs +++ b/Source/OpenTK/Math/Vector4.cs @@ -53,7 +53,7 @@ namespace OpenTK public float Z; /// - /// The Z component of the Vector4. + /// The W component of the Vector4. /// public float W; diff --git a/Source/OpenTK/Math/Vector4d.cs b/Source/OpenTK/Math/Vector4d.cs index c22bea23..484b4347 100644 --- a/Source/OpenTK/Math/Vector4d.cs +++ b/Source/OpenTK/Math/Vector4d.cs @@ -51,7 +51,7 @@ namespace OpenTK public double Z; /// - /// The Z component of the Vector4d. + /// The W component of the Vector4d. /// public double W;