PICCANTE  0.4
The hottest HDR imaging library!
color_3.hpp
Go to the documentation of this file.
1 /*
2 
3 PICCANTE
4 The hottest HDR imaging library!
5 http://vcg.isti.cnr.it/piccante
6 
7 Copyright (C) 2014
8 Visual Computing Laboratory - ISTI CNR
9 http://vcg.isti.cnr.it
10 First author: Francesco Banterle
11 
12 This Source Code Form is subject to the terms of the Mozilla Public
13 License, v. 2.0. If a copy of the MPL was not distributed with this
14 file, You can obtain one at http://mozilla.org/MPL/2.0/.
15 
16 */
17 
18 #ifndef PIC_COLORS_COLOR_3_HPP
19 #define PIC_COLORS_COLOR_3_HPP
20 
21 //typedef float float;
22 #include "../colors/color.hpp"
23 
24 namespace pic {
25 
30 
31 //basic colors
32 const Color3 RED = Color3(1.0f, 0.0f, 0.0f);
33 const Color3 GREEN = Color3(0.0f, 1.0f, 0.0f);
34 const Color3 BLUE = Color3(0.0f, 0.0f, 1.0f);
35 
36 const Color3 BLACK = Color3(0.0f, 0.0f, 0.0f);
37 const Color3 WHITE = Color3(1.0f, 1.0f, 1.0f);
38 
39 } // end namespace pic
40 
41 #endif /* PIC_COLORS_COLOR_3_HPP */
42 
Vec< 3, float > Color3
Color3.
Definition: color_3.hpp:29
const Color3 WHITE
Definition: color_3.hpp:37
const Color3 BLACK
Definition: color_3.hpp:36
const Color3 GREEN
Definition: color_3.hpp:33
Definition: bilateral_separation.hpp:25
const Color3 BLUE
Definition: color_3.hpp:34
The Vec class.
Definition: vec.hpp:35
const Color3 RED
Definition: color_3.hpp:32