draw2d/curve/tracer.go
2015-04-23 10:05:48 +02:00

7 lines
164 B
Go

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