aboutsummaryrefslogtreecommitdiff
path: root/plot.go
blob: 4259eedba9b9309aca3d6cac416b93f44614eb04 (plain)
1
2
3
4
5
6
7
8
9
10
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...