draw2d/curve/tracer.go

8 lines
164 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 {
2015-04-23 08:05:48 +00:00
// AddPoint a point
AddPoint(x, y float64)
2015-04-22 17:07:03 +00:00
}