1 module plot2d.drawable;
2
3 import std.exception : enforce;
4
5 public
6 {
7 import plot2d.backend;
8 import plot2d.util;
9 import plot2d.types;
10 import plot2d.style;
11 import plot2d.trtor;
12 }
13
14 ///
15 interface Drawable
16 {
17 ///
18 void draw(Ctx, Trtor);
19 }