From f527cde6342c5b8109a20f0a6b483327c6569844 Mon Sep 17 00:00:00 2001 From: salinasd Date: Tue, 27 Jan 2015 10:20:13 +0000 Subject: Merge GudhUI, a UI for gudhi based on Qt git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@427 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 17fedd974f14a8225b27d94361e835964eeb5cba --- src/GudhUI/view/Color.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/GudhUI/view/Color.h (limited to 'src/GudhUI/view/Color.h') diff --git a/src/GudhUI/view/Color.h b/src/GudhUI/view/Color.h new file mode 100644 index 00000000..a63456cb --- /dev/null +++ b/src/GudhUI/view/Color.h @@ -0,0 +1,21 @@ +/* + * Color.h + * + * Created on: Aug 26, 2014 + * Author: dsalinas + */ + +#ifndef COLOR_H_ +#define COLOR_H_ + + + +struct Color{ + double r; + double g; + double b; + Color(double r_,double g_,double b_):r(r_),g(g_),b(b_){} +}; + + +#endif /* COLOR_H_ */ -- cgit v1.2.3