mirror of
https://github.com/soukoku/ntwain.git
synced 2025-11-24 08:47:06 +08:00
Fixed getter typo in TW_CIEPOINT.
This commit is contained in:
@@ -8,6 +8,7 @@ This project has these features/goals:
|
||||
|
||||
* Targets latest TWAIN version (2.4 as of this writing)
|
||||
* Supports all the TWAIN functions in the spec (may never happen but will be close).
|
||||
* Works with both 32 and 64 bit data sources (eventually)
|
||||
|
||||
## Using the lib
|
||||
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<LangVersion>7.1</LangVersion>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
@@ -33,6 +34,9 @@
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<LangVersion>7.1</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user