I have a need to convert the 64 bit double to 32 bit float for output on a disk. In that FM doesn't have true float, does anyone have a suggestion on how to...
I expect you'll have to play some game about writing it into a malloced block so you can use things as integers versus floats and doubles, but here is how...
I finally got the BUZZ (Symmetrical Nearest Neighbor) filter. The code is below. If anyone sees where it could be speeded up, I'd like to know. The C code I...
Hi Jim, I use standard this setting: int Zn; //IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII IIIIIIIIIIIIIIII setChannel Zn //...
*Hi Paul. I'm trying to understand how the Z loop works. If I write (z=0; z<3; z++) does it loop through 0, 1, and 2 or does it also loop a fourth time for the...
Hi Jim, for ( z =0; z <=Zn; z++) "for" creates a loop, z =0; =start value, z <=Zn; =end condition, z++ = step (++ is C-code for adding 1 each time a complete...
Jim, *for(z=0; z<3; z++) { *... do code ...* }* is equivalent to the following code (to make it clearer): *z = 0*; while( *z < 3* ) { *... do code ...* *z++*; ...
Thanks for the explanation, Eric. Now I understand it. I thought maybe it would increment if z<3. Now I see that it executes only if z<3. I'm glad I got it...
You can now download Buzz Pro 3 for free. http://asnailpace.com/blog/buzz-pro-v30/ <http://asnailpace.com/blog/buzz-pro-v30/> I got this message today. I'm...
hi Jim, thanks, the blog / the plugin seems interesting. I hope however this is something legal. ... did you tried to apply the effect multiple time ? I've...
Hi Medhi, I think the buZZ plugin must be legal. The old buZZ pligin required a registration key to operate. This one doesn't. I tried applying my code...
Hi Medhi, You were right about adding iterations. It removes much more detail with several iterations. The problem is that a crosshatch pattern shows up. The...
I'd like to see the following additions made to the dialog building: getCtlDiv ( ic ) to go with undocumented setCtlDiv. dctl ( ic ) which is double of ctl(...
Add to these: setCtlMul and getCtlMul so that one states the actual range and val parameters. The dctl ( ic ) would then be CTn = round ( (double)ctl ( ic ) /...
getCtlDiv() is already implemented as getCtlDivisor(). It must have slipped through the release notes somehow. dctl() seems utterly useless to me as a...
Martijn, Thanks. Good to know about getCtlDivisor. dctl() would return a double and when true float appears, there would be an fctl(). ctl(n): MODIFY (my...
Martijn, Part 2 of the previous e-mail. ctl(n): MODIFY works very well. I would like to be able to use char arrays like str0-9 etc. to Text and also ToolTip...
Martijn/All, Part 3 of previous e-mails. First off, forget the set/getCtlMul. I finally understand the divisor usage and will try to document on the Wiki. ...
I've been looking the array allocation and use routines but can't see how I might pass that array to a dll. Is there a pointer somewhere that is available to...
All, Once again, I have to comment. Requests such as Ron's are sent in good faith, but are what I would characterize as 'math extensions of the FM language.' ...
Alex, Thanks. Will try it and then document it. RON C Ron Chambers 1713 Twila Ln. Conroe, TX 77301-1175 Home-936.539.1630 Cell-713.806.6304 ... From:...
Is anyone else missing emails from the FMML? I'm not receiving any of the emails from Alex or Martijn, and I've felt for a while that I'm only seeing half the...
Hi Kohan, Haven't followed FMML much lately but it is very well possible; Yahoo! Groups occasionally has it's moments. Haven't noticed it recently but in the...
Hi all If any of you can solve this problem, I would be gratefull. Currently we can not make truely scriptable plug-ins using doubles or floats. 1) Make the...
Is there a way to reduce the scroller in the scrollbar without coding the whole scrollbar myself? Is there a way to resize the preview window? We can't find a...
We found setCtlThumbSize( CTL , ???? ); Setting ???? to one (1) made the scroller narrow but we don't know what the parameter spec is. DBU's?? RON C Is...
Ron, Here's the only info that I have on that.. ... Tuesday, February 12, 2008 12:00 PM Hi, Thanks for pointing me to it, Timo. FM does not set the pagewith...
Bill, Thanks. Can you add the page in the Wiki for this? Then we can add what we know about it. Can anyone add a page in the Wiki? Couldn't fine a way but I...