diff options
author | Mattias Andrée <maandree@kth.se> | 2017-06-10 10:48:21 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-06-10 10:48:21 +0200 |
commit | 42ca750430bf40ba13493ac46028d22e6f3555b9 (patch) | |
tree | 04324f1e954990175dc7922c46da26855a4b5a92 /LIBCOLOUR_CIELUV.7 | |
parent | Reduce size of RGB struct, and add LIBCOLOUR_CIELCHUV.7 and LIBCOLOUR_RGB.7 (diff) | |
download | libcolour-42ca750430bf40ba13493ac46028d22e6f3555b9.tar.gz libcolour-42ca750430bf40ba13493ac46028d22e6f3555b9.tar.bz2 libcolour-42ca750430bf40ba13493ac46028d22e6f3555b9.tar.xz |
m + add libcolour_delta_e.3, libcolour_srgb_decode.3, and libcolour_srgb_encode.3
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'LIBCOLOUR_CIELUV.7')
-rw-r--r-- | LIBCOLOUR_CIELUV.7 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/LIBCOLOUR_CIELUV.7 b/LIBCOLOUR_CIELUV.7 index 24d5d88..607415e 100644 --- a/LIBCOLOUR_CIELUV.7 +++ b/LIBCOLOUR_CIELUV.7 @@ -6,9 +6,9 @@ CIE 1976 (L*, u*, v*) (also known simply as CIE L*u*v*) colours are presented with either of .nf - \fBtypedef struct libcolour_cieluv_f libcolour_cieluv_f_t;\fP - \fBtypedef struct libcolour_cieluv_lf libcolour_cieluv_lf_t;\fP - \fBtypedef struct libcolour_cieluv_llf libcolour_cieluv_llf_t;\fP + typedef struct libcolour_cieluv_f libcolour_cieluv_f_t; + typedef struct libcolour_cieluv_lf libcolour_cieluv_lf_t; + typedef struct libcolour_cieluv_llf libcolour_cieluv_llf_t; .fi These @@ -24,13 +24,13 @@ and are otherwise identical. is defined as .nf - \fBstruct libcolour_cieluv_f {\fP - \fBenum libcolour_model\fP \fImodel\fP\fB;\fP - \fBfloat\fP \fIL\fP\fB;\fP - \fBfloat\fP \fIu\fP\fB;\fP - \fBfloat\fP \fIv\fP\fB;\fP - \fBstruct libcolour_ciexyz\fP \fIwhite\fP\fB;\fP - \fB};\fP + struct libcolour_cieluv_f { + enum libcolour_model \fImodel\fP; + float \fIL\fP; + float \fIu\fP; + float \fIv\fP; + struct libcolour_ciexyz \fIwhite\fP; + }; .fi .I .model |