mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-22 21:51:08 +00:00
Corrected documentation on the M42 property. Fixes issue [#1227]: "Matrix4.M42 documentation".
This commit is contained in:
parent
3fbee6a156
commit
83514567f4
|
@ -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