Thomas Lew / Mbed 2 deprecated FreeFlyerROS

Dependencies:   mbed ros_lib_kinetic

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers colors.h Source File

colors.h

00001 #ifndef COLORS_H
00002 #define COLORS_H
00003 
00004 #include "RGBA.h"
00005 
00006 namespace color {
00007     const RGBA<float> white   (255, 255, 255,   0);
00008     const RGBA<float> red     (255,   0,   0,   0);
00009     const RGBA<float> green   (  0, 255,   0,   0);
00010     const RGBA<float> blue    (  0,   0, 255,   0);
00011     const RGBA<float> yellow  (255, 255,   0,   0);
00012     const RGBA<float> cyan    (  0, 255, 255,   0);
00013     const RGBA<float> magenta (255,   0, 255,   0);
00014     
00015 } // End "color" namespace
00016 
00017 
00018 
00019 #endif COLORS_H