예제 #1
0
파일: pplot.go 프로젝트: 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))
}
예제 #2
0
파일: iuppplot.go 프로젝트: visualfc/go-iup
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))
}