aboutsummaryrefslogtreecommitdiff
path: root/plot.go
diff options
context:
space:
mode:
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...