Exemplo n.º 1
0
Arquivo: pplot.go Projeto: DaviWei/iup
func Insert(ih *iup.Ihandle, index, sample_index int, x, y float64) {
	C.IupPPlotInsert(ih.C(), C.int(index), C.int(sample_index), C.float(x), C.float(y))
}
Exemplo n.º 2
0
func (h *IupPPlot) Insert(index, sample_index int, x, y float32) {
	C.IupPPlotInsert(toNative(h), C.int(index), C.int(sample_index), C.float(x), C.float(y))
}