YUV
struct YUV : Hashable
The Y′UV components of a color - luma (Y′) and chroma (U,V).
-
The luma component of the color, in the range 0, 1.
Declaration
Swift
public var Y: CGFloat -
The blue-difference chroma component of the color, in the range [-0.436, 0.436].
Declaration
Swift
public var U: CGFloat -
The red-difference chroma component of the color, in the range [-0.615, 0.615].
Declaration
Swift
public var V: CGFloat -
Initializes the Y′UV components of a color - luma (Y′) and chroma (U,V).
Parameters
YThe luma component of the color, in the range 0, 1.
UThe blue-difference chroma component of the color, in the range [-0.436, 0.436].
VThe red-difference chroma component of the color, in the range [-0.615, 0.615].
View on GitHub
YUV Structure Reference