Rename to HSLuv
[convert-color-hsluv.git] / snapshot-to-csv
index b434939da0b61ee52662c170d99b7afb8d2b7f12..f9908248fcfd3f535ec4d60ac0d595703969fb49 100755 (executable)
@@ -10,9 +10,9 @@ open my $fh, '>', 't/snapshot-rev4.csv';
 select $fh;
 
 my %tests = %{decode_json read_file 't/snapshot-rev4.json'};
-my @colors = qw/xyz luv lch husl huslp/;
+my @colors = qw/xyz luv lch hsluv hpluv/;
 
-say join ',', qw/rgb8 xyz_x xyz_y xyz_z luv_l luv_u luv_v lch_l lch_c lch_h husl_h husl_s husl_l huslp_h husl_s husl_l/;
+say join ',', qw/rgb8 xyz_x xyz_y xyz_z luv_l luv_u luv_v lch_l lch_c lch_h hsluv_h hsluv_s hsluv_l hpluv_h hsluv_s hsluv_l/;
 for my $rgb8 (sort keys %tests) {
        next if $rgb8 =~ m/[13579bde]/i;
        my @cols = map { @{$tests{$rgb8}{$_}} } @colors;
This page took 0.009414 seconds and 4 git commands to generate.