Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Color.C
Go to the documentation of this file.
1 // ======================================================================
2 //
3 // Copyright (c) 1997 The CGAL Consortium
4 
5 // This software and related documentation is part of the Computational
6 // Geometry Algorithms Library (CGAL).
7 // This software and documentation is provided "as-is" and without warranty
8 // of any kind. In no event shall the CGAL Consortium be liable for any
9 // damage of any kind.
10 //
11 // Every use of CGAL requires a license.
12 //
13 // Academic research and teaching license
14 // - For academic research and teaching purposes, permission to use and copy
15 // the software and its documentation is hereby granted free of charge,
16 // provided that it is not a component of a commercial product, and this
17 // notice appears in all copies of the software and related documentation.
18 //
19 // Commercial licenses
20 // - A commercial license is available through Algorithmic Solutions, who also
21 // markets LEDA (http://www.algorithmic-solutions.de).
22 // - Commercial users may apply for an evaluation license by writing to
23 // Algorithmic Solutions (contact@algorithmic-solutions.com).
24 //
25 // The CGAL Consortium consists of Utrecht University (The Netherlands),
26 // ETH Zurich (Switzerland), Free University of Berlin (Germany),
27 // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg
28 // (Germany), Max-Planck-Institute Saarbrucken (Germany), RISC Linz (Austria),
29 // and Tel-Aviv University (Israel).
30 //
31 // ----------------------------------------------------------------------
32 //
33 // release : CGAL-2.2
34 // release_date : 2000, September 30
35 //
36 // file : src/Color.C
37 // package : iostream (2.8)
38 // source : $RCSfile: Color.C,v $
39 // revision : $Revision: 1.1.1.1 $
40 // revision_date : $Date: 2001/07/05 22:17:49 $
41 // author(s) : Andreas Fabri, Hervé Brönnimann
42 //
43 // coordinator : Mariette Yvinec
44 //
45 // email : contact@cgal.org
46 // www : http://www.cgal.org
47 //
48 // ======================================================================
49 
50 #include <CGAL/IO/Color.h>
51 
52 
54 
55 const Color BLACK = Color(0, 0, 0);
56 const Color WHITE = Color(255, 255, 255);
57 const Color GRAY = Color(100,100,100);
58 
59 const Color GREEN = Color(0, 255, 0);
60 
61 const Color DEEPBLUE = Color(10, 0, 100);
62 const Color BLUE = Color(0, 0, 255);
63 const Color VIOLET = Color(255, 0, 255);
64 const Color PURPLE = Color(100, 0, 70);
65 
66 const Color RED = Color(255, 0, 0);
67 const Color ORANGE = Color(235, 150, 0);
68 const Color YELLOW = Color(255, 255, 0);
69 
71 
const Color RED
Definition: Color.C:66
const Color BLACK
Definition: Color.C:55
const Color ORANGE
Definition: Color.C:67
const Color VIOLET
Definition: Color.C:63
const Color GREEN
Definition: Color.C:59
const Color WHITE
Definition: Color.C:56
const Color YELLOW
Definition: Color.C:68
const Color BLUE
Definition: Color.C:62
Color
Definition: rfc_basic.h:48
const Color GRAY
Definition: Color.C:57
const Color DEEPBLUE
Definition: Color.C:61
Definition: Color.h:58
#define CGAL_BEGIN_NAMESPACE
Definition: kdtree_d.h:86
#define CGAL_END_NAMESPACE
Definition: kdtree_d.h:87
const Color PURPLE
Definition: Color.C:64