mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 18:55:50 +00:00
Corrected documentation on the M42 property. Fixes issue [#1227]: "Matrix4.M42 documentation".
This commit is contained in:
parent
d99fb773f5
commit
a98c1f9ae2
|
@ -229,7 +229,7 @@ namespace OpenTK
|
||||||
public float M41 { get { return Row3.X; } set { Row3.X = value; } }
|
public float M41 { get { return Row3.X; } set { Row3.X = value; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <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>
|
/// </summary>
|
||||||
public float M42 { get { return Row3.Y; } set { Row3.Y = value; } }
|
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; } }
|
public double M41 { get { return Row3.X; } set { Row3.X = value; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <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>
|
/// </summary>
|
||||||
public double M42 { get { return Row3.Y; } set { Row3.Y = value; } }
|
public double M42 { get { return Row3.Y; } set { Row3.Y = value; } }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue