• Main Page
  • Classes
  • Files
  • File List
  • File Members

ControlPoint.hpp

Go to the documentation of this file.
00001 #ifndef CONTROLPOINT_HPP
00002 #define CONTROLPOINT_HPP
00003 
00004 #include "Color.hpp"
00005 
00006 class ControlPoint {
00007 public:
00008         float x, y;
00009         Color *color;
00010 
00011         bool selected;
00012         bool dragged;
00013 public:
00014         ControlPoint(void);
00015         ControlPoint(float x);
00016         ControlPoint(float x, float y);
00017         ControlPoint(float x, float y, Color *color);
00018         virtual ~ControlPoint(void);
00019 };
00020 
00021 #endif

Generated on Mon Dec 6 2010 11:57:24 for Visualisierung 2010 by  doxygen 1.7.2