Skip to content
Snippets Groups Projects
Commit e2a6f120 authored by Jean-Christophe Fillion-Robin's avatar Jean-Christophe Fillion-Robin
Browse files

ENH: Add Orange color

This is needed for the VROrthognathic/OrthognathicTrainer project.
parent da07e0bc
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,7 @@ Color Color::Blue(0.0, 0.0, 1.0, 1.0);
Color Color::Green(0.0, 1.0, 0.0, 1.0);
Color Color::Red(1.0, 0.0, 0.0, 1.0);
Color Color::Yellow(1.0, 1.0, 0.0, 1.0);
Color Color::Orange(1.0, 0.6, 0.0, 1.0);
Color Color::Pink(1.0, 0.0, 1.0, 1.0);
Color::Color()
......
......@@ -100,6 +100,7 @@ struct Color
static Color Green;
static Color Red;
static Color Pink;
static Color Orange;
static Color Yellow;
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment