From 93cee413e4f07d327ab358f6914dc91ec069ea65 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sun, 22 Jul 2018 18:28:00 -0400 Subject: Fix scheme indentation --- bin/scheme.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'bin/scheme.c') diff --git a/bin/scheme.c b/bin/scheme.c index 1e4d9439..e50ea892 100644 --- a/bin/scheme.c +++ b/bin/scheme.c @@ -26,23 +26,23 @@ #include static const struct Hsv { double h, s, v; } -R = { 0.0, 1.0, 1.0 }, - Y = { 60.0, 1.0, 1.0 }, - G = { 120.0, 1.0, 1.0 }, - C = { 180.0, 1.0, 1.0 }, - B = { 240.0, 1.0, 1.0 }, - M = { 300.0, 1.0, 1.0 }; + R = { 0.0, 1.0, 1.0 }, + Y = { 60.0, 1.0, 1.0 }, + G = { 120.0, 1.0, 1.0 }, + C = { 180.0, 1.0, 1.0 }, + B = { 240.0, 1.0, 1.0 }, + M = { 300.0, 1.0, 1.0 }; static struct Hsv x(struct Hsv o, double hd, double sf, double vf) { return (struct Hsv) { fmod(o.h + hd, 360.0), - fmin(o.s * sf, 1.0), - fmin(o.v * vf, 1.0), + fmin(o.s * sf, 1.0), + fmin(o.v * vf, 1.0), }; } +enum { BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE }; struct Ansi { - enum { BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE }; struct Hsv dark[8]; struct Hsv light[8]; }; -- cgit 1.4.1