I'm writing a new class. When the calling function calls it, the parameters of the new class don't show up in the Formula pane.
Here's an outline of what it looks like:
class FEval(common.ulb:Generic) {
public:
func FEval(Generic pparent)
Generic.Generic(pparent)
endfunc
complex func iterate(complex pz)
;stuff here
endfunc
protected:
;stuff
default:
float param p
caption = "power"
default = 2
endparam
; more params
}
The code compiles and runs, giving the proper result, assuming all the default parameters, but the parameters aren't shown and I can't change from the default values.
Something obvious?
I'm writing a new class. When the calling function calls it, the parameters of the new class don't show up in the Formula pane.
Here's an outline of what it looks like:
````
class FEval(common.ulb:Generic) {
public:
func FEval(Generic pparent)
Generic.Generic(pparent)
endfunc
complex func iterate(complex pz)
;stuff here
endfunc
protected:
;stuff
default:
float param p
caption = "power"
default = 2
endparam
; more params
}
````
The code compiles and runs, giving the proper result, assuming all the default parameters, but the parameters aren't shown and I can't change from the default values.
Something obvious?