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 }
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 }
func Open() *iup.Error { C.IupPPlotOpen() return nil }