aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plot.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/plot.go b/plot.go
new file mode 100644
index 0000000..4259eed
--- /dev/null
+++ b/plot.go
@@ -0,0 +1,11 @@
+package robo
+
+type Plotter interface {
+ Plot() []byte
+}
+
+type Line []Point
+type Berzier [4]Point
+
+func (v Line) Draw() []byte { return nil } // MDDDD...
+func (v Bezier) Draw() []byte { return nil } // BZ...