public class CieCoordinates extends Object
The class contains the x,y, and z coordinates of a specific color in a specified color space.
Constructor and Description |
---|
CieCoordinates(byte[] bytes)
Initializes a new instance of the
CieCoordinates class. |
Modifier and Type | Method and Description |
---|---|
long |
getCieCoordinatesX()
Gets or sets the coordinates x.
|
long |
getCieCoordinatesY()
Gets or sets the coordinates y.
|
long |
getCieCoordinatesZ()
Gets or sets the coordinates z.
|
void |
setCieCoordinatesX(long value)
Gets or sets the coordinates x.
|
void |
setCieCoordinatesY(long value)
Gets or sets the coordinates y.
|
void |
setCieCoordinatesZ(long value)
Gets or sets the coordinates z.
|
public CieCoordinates(byte[] bytes)
Initializes a new instance of the CieCoordinates
class.
bytes
- The array bytes.public long getCieCoordinatesX()
Gets or sets the coordinates x.
Value: The coordinates x.public void setCieCoordinatesX(long value)
Gets or sets the coordinates x.
Value: The coordinates x.public long getCieCoordinatesY()
Gets or sets the coordinates y.
Value: The coordinates y.public void setCieCoordinatesY(long value)
Gets or sets the coordinates y.
Value: The coordinates y.public long getCieCoordinatesZ()
Gets or sets the coordinates z.
Value: The coordinates z.public void setCieCoordinatesZ(long value)
Gets or sets the coordinates z.
Value: The coordinates z.