allc
Version:
A small typescript package for color conversion.
31 lines • 1.16 kB
TypeScript
/**
* Calculates the red component of linear Rec. 2020 from CIE 1931 XYZ.
*
* @param x The X component of CIE 1931 XYZ.
* @param y The Y component of CIE 1931 XYZ.
* @param z The Z component of CIE 1931 XYZ.
*
* @returns The red component of linear Rec. 2020.
*/
export declare const toLinearRec2020RFromCIE1931XYZ: (x: number, y: number, z: number) => number;
/**
* Calculates the green component of linear Rec. 2020 from CIE 1931 XYZ.
*
* @param x The X component of CIE 1931 XYZ.
* @param y The Y component of CIE 1931 XYZ.
* @param z The Z component of CIE 1931 XYZ.
*
* @returns The green component of linear Rec. 2020.
*/
export declare const toLinearRec2020GFromCIE1931XYZ: (x: number, y: number, z: number) => number;
/**
* Calculates the blue component of linear Rec. 2020 from CIE 1931 XYZ.
*
* @param x The X component of CIE 1931 XYZ.
* @param y The Y component of CIE 1931 XYZ.
* @param z The Z component of CIE 1931 XYZ.
*
* @returns The blue component of linear Rec. 2020.
*/
export declare const toLinearRec2020BFromCIE1931XYZ: (x: number, y: number, z: number) => number;
//# sourceMappingURL=to-linear-rec-2020.d.ts.map