8 lines
162 B
Go
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)
|
||
|
}
|