WWDC 2006 2007 2008 2009 2010 2011 2012 2013 2014
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Reference here: http://www.mrao.cam.ac.uk/~dag/CUBEHELIX/ | |
skg_color128_t skg_col_helix128(float h, float s, float l, float alpha) { | |
const float tau = 6.28318f; | |
l = fminf(1,l); | |
float angle = tau * (h+(1/3.f)); | |
float amp = s * l * (1.f - l); | |
float a_cos = cosf(angle); | |
float a_sin = sinf(angle); | |
float r = l + amp * (-0.14861f * a_cos + 1.78277f * a_sin); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='utf-8'?> | |
<opml version="1.0"> | |
<head /> | |
<body> | |
<outline text="https://xeiaso.net" type="rss" xmlUrl="https://xeiaso.net/blog.rss" /> | |
<outline text="https://fasterthanli.me/" type="rss" | |
xmlUrl="https://fasterthanli.me/index.xml" /> | |
<outline text="https://matt-rickard.com" type="rss" xmlUrl="/rss/" /> | |
<outline text="https://jmmv.dev/" type="rss" xmlUrl="/feed.xml" /> | |
<outline text="https://paulstamatiou.com" type="rss" |
OlderNewer