draw2d/curve/line.go
2015-04-23 15:36:56 +02:00

8 lines
162 B
Go

package curve
// LineBuilder is an interface that help segmenting curve into small lines
type LineBuilder interface {
// LineTo a point
LineTo(x, y float64)
}