aboutsummaryrefslogtreecommitdiff
path: root/plot.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-09-24 03:01:12 +0200
committerDimitri Sokolyuk <demon@dim13.org>2016-09-24 03:01:12 +0200
commit21aee3dfe51e4e1b3310c1d2068f7ebd1aafd50b (patch)
tree8bf51fa1ab6626fea62d7c6ce0fd5f6f1de24fe0 /plot.go
parent23bc3d8109537b4e2684610426f30c0be353b95f (diff)
Return err with NewDevice
Diffstat (limited to 'plot.go')
-rw-r--r--plot.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/plot.go b/plot.go
index 4259eed..e0c778b 100644
--- a/plot.go
+++ b/plot.go
@@ -5,7 +5,9 @@ type Plotter interface {
}
type Line []Point
-type Berzier [4]Point
+type Bezier [4]Point
+type Circle [3]Point
func (v Line) Draw() []byte { return nil } // MDDDD...
func (v Bezier) Draw() []byte { return nil } // BZ...
+func (v Circle) Draw() []byte { return nil } // W...