-Is it possible to define a function in the inlinevop and then call it as well? Something along the lines of:
float f(float x, float y){ return x*y; }
z=f(12.0,23.0);
printf("z:%f ",z);
We can do this with a Vex builder type by putting the functions in the outer code section if I remember correctly. But how about inline vop?
-Is there a way to turn a string into a vex expression? For example, a user would enter "x^2" as a parameter and we could use it as
x^2in the code.
Thanks!
Edited by Macha, 30 May 2012 - 11:42 AM.












