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?
 
0
reply
1
views
0
replies
1
followers
live preview
Enter at least 10 characters.
WARNING: You mentioned %MENTIONS%, but they cannot see this message and will not be notified
Saving...
Saved
All posts under this topic will be deleted ?
Pending draft ... Click to resume editing
Discard draft