CieCoordinatesTriple
Contents
[
Hide
]Inheritance: java.lang.Object
public class CieCoordinatesTriple
The class contains the x,y, and z coordinates of the three colors that correspond to the red, green, and blue endpoints for a specified logical color space.
Constructors
Constructor | Description |
---|---|
CieCoordinatesTriple(byte[] bytes) | Initializes a new instance of the CieCoordinatesTriple class. |
Methods
Method | Description |
---|---|
getCieXyzRed() | Gets the xyz coordinates of red endpoint. |
getCieXyzGreen() | Gets the xyz coordinates of green endpoint. |
getCieXyzBlue() | Gets the xyz coordinates of blue endpoint. |
CieCoordinatesTriple(byte[] bytes)
public CieCoordinatesTriple(byte[] bytes)
Initializes a new instance of the CieCoordinatesTriple
class.
Parameters:
Parameter | Type | Description |
---|---|---|
bytes | byte[] | The bytes. |
getCieXyzRed()
public CieCoordinates getCieXyzRed()
Gets the xyz coordinates of red endpoint.
Value: The xyz coordinates of red endpoint.
Returns: CieCoordinates
getCieXyzGreen()
public CieCoordinates getCieXyzGreen()
Gets the xyz coordinates of green endpoint.
Value: The xyz coordinates of green endpoint.
Returns: CieCoordinates
getCieXyzBlue()
public CieCoordinates getCieXyzBlue()
Gets the xyz coordinates of blue endpoint.
Value: The xyz coordinates of blue endpoint.
Returns: CieCoordinates