source: tags/release-1.2.2/src/Cubes/AnnotationKarma.hh

Last change on this file was 869, checked in by MatthewWhiting, 13 years ago

New code to handle annotations in an OO manner. TODO - expand to other annotation types.

File size: 325 bytes
Line 
1
2class AnnotationKarma : public Annotation
3{
4public:
5  void line(float x1, float x2, float y1, float y2);
6  void circle(float x, float y, float r);
7  void ellipse(float x, float y, float maj, float min, float pa);
8  void text(float x, float y, std::string content);
9  void comment(std::string content);
10
11protected:
12 
13
14};
15
16
Note: See TracBrowser for help on using the repository browser.