2 #include "clipper/clipper.hpp"
3 #include "common/common.hpp"
13 DragSelection(
class CanvasGL &c);
17 void drag_begin(GdkEventButton *button_event);
18 void drag_end(GdkEventButton *button_event);
19 void drag_move(GdkEventMotion *motion_event);
29 Box(
class CanvasGL &c) : ca(c)
58 Line(
class CanvasGL &c) : ca(c)
78 Vertex(
float ix,
float iy) : x(ix), y(iy)
85 std::vector<Vertex> vertices;
86 ClipperLib::Path path;