From 23bc3d8109537b4e2684610426f30c0be353b95f Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Sat, 24 Sep 2016 01:38:47 +0200 Subject: add plotter --- plot.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 plot.go 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... -- cgit v1.2.3