CIEUCS

struct CIEUCS : Hashable

The CIE 1960 UCS components of a color - (u,v) chromaticity coordinates.

  • u

    The u-axis chromaticity coordinate of the color, in the range [0, 1].

    Declaration

    Swift

    public var u: CGFloat
  • v

    The v-axis chromaticity coordinate of the color, in the range [0, 1].

    Declaration

    Swift

    public var v: CGFloat
  • Initializes the CIE 1960 UCS components of a color - (u,v) chromaticity coordinates.

    Declaration

    Swift

    public init(u: CGFloat, v: CGFloat)

    Parameters

    u

    The u-axis chromaticity coordinate of the color, in the range [0, 1].

    v

    The v-axis chromaticity coordinate of the color, in the range [0, 1].