Krzysztof Foltman wrote:
> Gabriel M. Beddingfield wrote:
>> I've applied the 100k patch.  I also committed a change to make the min. 
>> release 
>> time 256 frames.
>>   
> Why not use "if (_release < 256)" instead of "if (_release == 0)"? :)

You're right.  I'll fix it.  I was in a hurry before leaving vacation and 
didn't 
think it through completely.

BTW, on the knob setting, I was thinking of changing:

      rotary = sqrt( __param / 100000.0 )
      __param = rotary * rotary * 100000.0

To something like:

      if( __param < 256 ) __param = 256;
      rotary = sqrt( (__param-256) / 100000.0 )
      __param = rotary * rotary * 100000.0 + 256.0

What do you think?

-gabriel


------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
_______________________________________________
Hydrogen-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/hydrogen-devel

Reply via email to