CIEUVW

struct CIEUVW : Hashable

The CIE 1964 UVW components of a color - chromaticity (U,V) and lightness (W).

  • U

    The U chromaticity component of the color, typically in the range [-100, 100].

    Declaration

    Swift

    public var U: CGFloat
  • V

    The V chromaticity component of the color, typically in the range [-100, 100].

    Declaration

    Swift

    public var V: CGFloat
  • W

    The lightness component of the color, in the range 0, 100.

    Declaration

    Swift

    public var W: CGFloat
  • Initializes the CIE 1964 UVW components of a color - chromaticity (U,V) and lightness (W).

    Declaration

    Swift

    public init(U: CGFloat, V: CGFloat, W: CGFloat)

    Parameters

    U

    The U chromaticity component of the color, typically in the range [-100, 100].

    V

    The V chromaticity component of the color, typically in the range [-100, 100].

    W

    The lightness component of the color, in the range 0, 100.