From a98c1f9ae2c8bc6fe2097502904696530701ae52 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Wed, 14 Oct 2009 18:30:12 +0000 Subject: [PATCH] Corrected documentation on the M42 property. Fixes issue [#1227]: "Matrix4.M42 documentation". --- Source/OpenTK/Math/Matrix4.cs | 2 +- Source/OpenTK/Math/Matrix4d.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/OpenTK/Math/Matrix4.cs b/Source/OpenTK/Math/Matrix4.cs index 1cec3d49..8eb5a484 100644 --- a/Source/OpenTK/Math/Matrix4.cs +++ b/Source/OpenTK/Math/Matrix4.cs @@ -229,7 +229,7 @@ namespace OpenTK public float M41 { get { return Row3.X; } set { Row3.X = value; } } /// - /// Gets or sets the value at row 4, column 3 of this instance. + /// Gets or sets the value at row 4, column 2 of this instance. /// public float M42 { get { return Row3.Y; } set { Row3.Y = value; } } diff --git a/Source/OpenTK/Math/Matrix4d.cs b/Source/OpenTK/Math/Matrix4d.cs index be924d78..367a7b00 100644 --- a/Source/OpenTK/Math/Matrix4d.cs +++ b/Source/OpenTK/Math/Matrix4d.cs @@ -229,7 +229,7 @@ namespace OpenTK public double M41 { get { return Row3.X; } set { Row3.X = value; } } /// - /// Gets or sets the value at row 4, column 3 of this instance. + /// Gets or sets the value at row 4, column 2 of this instance. /// public double M42 { get { return Row3.Y; } set { Row3.Y = value; } }