Fixed getter typo in TW_CIEPOINT.

This commit is contained in:
Eugene Wang
2018-11-15 20:07:54 -05:00
parent 546b885a0f
commit be8291521e
3 changed files with 7 additions and 2 deletions

View File

@@ -836,11 +836,11 @@ namespace NTwain.Data
/// <summary>
/// First tri-stimulus value of the CIE space representation.
/// </summary>
public float X { get { return _z; } }
public float X { get { return _x; } }
/// <summary>
/// Second tri-stimulus value of the CIE space representation.
/// </summary>
public float Y { get { return _z; } }
public float Y { get { return _y; } }
/// <summary>
/// Third tri-stimulus value of the CIE space representation.
/// </summary>