draw2d/curve/tracer.go
2015-04-22 19:07:03 +02:00

6 lines
141 B
Go

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