Functions | |
template<class Target> void | drawLine (Target &target, int x1, int y1, int x2, int y2) |
template<class Target> void | drawBox (Target &target, int x1, int y1, int x2, int y2) |
template<class Target> void | fillBox (Target &target, int x1, int y1, int x2, int y2) |
template<class Target> void | drawCircle (Target &target, int x, int y, int r) |
template<class Target> void | fillCircle (Target &target, int x, int y, int r) |
template<class Target> void | drawEllipse (Target &target, int x, int y, int r_x, int r_y) |
template<class Target> void | fillEllipse (Target &target, int x, int y, int r_x, int r_y) |
template<class Target, class T> void | drawPolygon (Target &target, polygon< T > const &poly) |
template<class Target, class T> void | fillPolygon (Target &target, polygon< T > const &poly) |
|
Definition at line 137 of file ixlib_drawing_functions.hh. |
|
Definition at line 166 of file ixlib_drawing_functions.hh. |
|
Definition at line 237 of file ixlib_drawing_functions.hh. |
|
Draws a line from [(x1,y1),(x2,y2)), i.e. leaves out the last pixel. Set manually if needed. This is done to allow faciliating the drawing of multiple lines in-a-row. Definition at line 72 of file ixlib_drawing_functions.hh. Referenced by drawPolygon().
|
|
Definition at line 436 of file ixlib_drawing_functions.hh. |
|
Definition at line 148 of file ixlib_drawing_functions.hh. |
|
Definition at line 203 of file ixlib_drawing_functions.hh. |
|
Definition at line 352 of file ixlib_drawing_functions.hh. |
|
Definition at line 480 of file ixlib_drawing_functions.hh. |