diff options
| author | Tim Redfern <tim@getdrop.com> | 2018-01-24 23:40:49 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@getdrop.com> | 2018-01-24 23:40:49 +0000 |
| commit | 404746784ce6ef2b87c396a12451947fee28b244 (patch) | |
| tree | b6217e1087993588d19fd6d51e24997d67ee2d4e /drawing/src/colourPolyline.h | |
| parent | 60b2973637d6150f3facb74eb9ae1d475071b915 (diff) | |
colourPolyline
Diffstat (limited to 'drawing/src/colourPolyline.h')
| -rw-r--r-- | drawing/src/colourPolyline.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drawing/src/colourPolyline.h b/drawing/src/colourPolyline.h new file mode 100644 index 0000000..2dc3872 --- /dev/null +++ b/drawing/src/colourPolyline.h @@ -0,0 +1,18 @@ +#pragma once +#include "ofPolyline.h" +#include "ofMain.h" + +class colourPolyline: public ofPolyline { + public: + + void addVertex( const ofPoint& p ); + + void addVertex( const ofPoint& p , const ofColor& c); + + void draw(); + + private: + + vector <ofColor> pointColours; + +};
\ No newline at end of file |
