示例#1
0
文件: impl.go 项目: h12w/go-plplot
// Plot a unary function
func Function(f UnaryFunc) {
	x, y := f.sample()
	c.Line(len(x), x, y)
}
示例#2
0
文件: impl.go 项目: h12w/go-plplot
func (l PolyLine) Do() {
	if len(l.X) != len(l.Y) {
		panic("X, Y length mismatch.")
	}
	c.Line(len(l.X), l.X, l.Y)
}