summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-03-31 00:00:32 -0400
committerJune McEnroe <june@causal.agency>2018-03-31 00:00:32 -0400
commitaddcb2dfdc1e139270d85b53d5e4625dac927be2 (patch)
tree68a1acd3cfe66220a54da0a9b93dc430135401c4
parentGenerate default palette in gfxx (diff)
downloadsrc-addcb2dfdc1e139270d85b53d5e4625dac927be2.tar.gz
src-addcb2dfdc1e139270d85b53d5e4625dac927be2.zip
Switch to HSV for gfxx palette generation
Diffstat (limited to '')
-rw-r--r--bin/gfxx.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/bin/gfxx.c b/bin/gfxx.c
index 23c71e3a..5c2c70b9 100644
--- a/bin/gfxx.c
+++ b/bin/gfxx.c
@@ -117,11 +117,10 @@ int init(int argc, char *argv[]) {
         fclose(file);
     } else {
         for (int i = 0; i < 256; ++i) {
-            double h = i * 360.0 / 256.0 / 60.0, s = 1.0, l = 0.5;
-            double c = (1.0 - fabs(2.0 * l - 1.0)) * s;
+            double h = i * 360.0 / 256.0 / 60.0, s = 1.0, v = 1.0;
+            double c = v * s;
             double x = c * (1.0 - fabs(fmod(h, 2.0) - 1.0));
-            double m = (l - c / 2.0);
-            double r = m, g = m, b = m;
+            double r = v - c, g = v - c, b = v - c;
             if (h <= 1.0)      { r += c; g += x; }
             else if (h <= 2.0) { r += x; g += c; }
             else if (h <= 3.0) { g += c; b += x; }
/client.c?h=3.0&id=dde58e1c338619710ecd2ead17e087591d6f738e&follow=1'>Set client-side origin to irc.invalidJune McEnroe 2019-10-24Factor out client-side origin nameJune McEnroe 2019-10-24Intercept all CAP commands from clientsJune McEnroe 2019-10-24Ignore further CAP ENDJune McEnroe 2019-10-24Implement client CAP for server-timeJune McEnroe 2019-10-24Implement ringWriteJune McEnroe 2019-10-24Make clientFormat publicJune McEnroe 2019-10-24Make serverFormat publicJune McEnroe 2019-10-24Rename some thingsJune McEnroe 2019-10-23Add ISUPPORT draft to STANDARDSJune McEnroe 2019-10-23Track own originJune McEnroe 2019-10-23Track channels and sync ISUPPORTJune McEnroe 2019-10-23Track nick changesJune McEnroe 2019-10-23Rename Command to MessageJune McEnroe 2019-10-23Synchronize state after client registrationJune McEnroe 2019-10-23Send to server if client has no needsJune McEnroe 2019-10-23Implement some amount of client connectionJune McEnroe 2019-10-23Set clients non-blockingJune McEnroe 2019-10-23Clean up state.c and factor out parsingJune McEnroe 2019-10-23Respond to pingsJune McEnroe 2019-10-23Add verbose flagJune McEnroe 2019-10-23Set NOSIGPIPE on server connectionJune McEnroe 2019-10-23Set an initial loop capJune McEnroe 2019-10-23Fix rest parsingJune McEnroe 2019-10-23Add dynamic poll listJune McEnroe 2019-10-23Don't assume commands have targets and handle ERRORJune McEnroe 2019-10-23Clean up state somewhatJune McEnroe 2019-10-23Actually send the buffer...June McEnroe 2019-10-23Add stateJune McEnroe