コード例 #1
0
ファイル: pplot.go プロジェクト: DaviWei/iup
func Open(opts ...interface{}) *iup.Ihandle {
	iup.OpenControlLib()

	if libOpened == false {
		C.IupPPlotOpen()
		libOpened = true
	}

	ih := (*iup.Ihandle)(C.IupPPlot())

	for _, o := range opts {
		switch o.(type) {
		default:
			iup.Decorate(ih, o)
		}
	}

	return ih
}
コード例 #2
0
ファイル: pplot.go プロジェクト: jcowgar/go-iup
func PPlot(opts ...interface{}) *Ihandle {
	OpenControlLib()

	if pplotLibOpened == false {
		C.IupPPlotOpen()
		pplotLibOpened = true
	}

	ih := (*Ihandle)(C.IupPPlot())

	for _, o := range opts {
		switch v := o.(type) {
		default:
			Decorate(ih, o)
		}
	}

	return ih
}