I'm confused. What should go in place of * in the code below? Or is this not the way to do this?
class cTweak {
public:
import "common.ulb"
func cTweak()
cTransform = new @cUT(***)
endfunc
complex func go(complex v)
return cTransform.Iterate(v)
endfunc
protected:
UserTransform cTransform
default:
UserTransform param cUT
caption = "c-tweak transform"
default = JLB_LinearUserTransform
endparam
}
I'm confused. What should go in place of *** in the code below? Or is this not the way to do this?
````
class cTweak {
public:
import "common.ulb"
func cTweak()
cTransform = new @cUT(***)
endfunc
complex func go(complex v)
return cTransform.Iterate(v)
endfunc
protected:
UserTransform cTransform
default:
UserTransform param cUT
caption = "c-tweak transform"
default = JLB_LinearUserTransform
endparam
}
````
edited Feb 24 '22 at 10:00 pm