aboutsummaryrefslogtreecommitdiff
path: root/plot.go
blob: e0c778bb5a0020f2f3d8ae11ca267d4936d9da02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package robo

type Plotter interface {
	Plot() []byte
}

type Line []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...