Skip to content

Instantly share code, notes, and snippets.

@st3fan
Created October 4, 2009 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save st3fan/201591 to your computer and use it in GitHub Desktop.
Save st3fan/201591 to your computer and use it in GitHub Desktop.
struct color {
const char* name;
float hue;
float size;
};
color colors[6] = {
{ "red", 0.0, 20.0 },
{ "orange" , 30.0, 15.0 },
{ "yellow" , 60.0, 5.0 },
{ "green", 120.0, 30.0 },
{ "blue", 220.0, 20.0 },
{ "magenta", 300.0, 5.0 }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment