Example #1
0
File: pplot.go Project: DaviWei/iup
func Add(ih *iup.Ihandle, x, y float64) {
	C.IupPPlotAdd(ih.C(), C.float(x), C.float(y))
}
Example #2
0
func (h *IupPPlot) Add(x, y float32) {
	C.IupPPlotAdd(toNative(h), C.float(x), C.float(y))
}