draw2d/curve/tracer.go

7 lines
141 B
Go
Raw Normal View History

2015-04-22 17:07:03 +00:00
package curve
// LineTracer is an interface that help segmenting curve into small lines
type LineTracer interface {
LineTo(x, y float64)
}