Corrected documentation on the M42 property. Fixes issue [#1227]: "Matrix4.M42 documentation".
This commit is contained in:
parent
d99fb773f5
commit
a98c1f9ae2
2 changed files with 2 additions and 2 deletions
|
@ -229,7 +229,7 @@ namespace OpenTK
|
|||
public float M41 { get { return Row3.X; } set { Row3.X = value; } }
|
||||
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </summary>
|
||||
public float M42 { get { return Row3.Y; } set { Row3.Y = value; } }
|
||||
|
||||
|
|
|
@ -229,7 +229,7 @@ namespace OpenTK
|
|||
public double M41 { get { return Row3.X; } set { Row3.X = value; } }
|
||||
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </summary>
|
||||
public double M42 { get { return Row3.Y; } set { Row3.Y = value; } }
|
||||
|
||||
|
|
Loading…
Reference in a new issue