Package de.sciss.meloncillo.session

Examples of de.sciss.meloncillo.session.SessionCollection


  private void offhandTick()
  {
    if( !rt_valid ) return;

    final SessionCollection  collTrns  = doc.getActiveTransmitters();
    final int        numTrns   = Math.min( rt_trnsLocX.length, collTrns.size() );
    final long        pos      = Math.min( timelineLen - 1, timelinePos );
    if( pos < 0 ) return;
   
    try {
      for( int trnsIdx = 0; trnsIdx < numTrns; trnsIdx++ ) {
        final Transmitter  trns  = (Transmitter) collTrns.get( trnsIdx );
        final AudioTrail  at    = trns.getAudioTrail();
        at.readFrames( trnsBuf, 0, new Span( pos, pos + 1 ));
        rt_trnsLocX[ trnsIdx = trnsBuf[ 0 ][ 0 ];
        rt_trnsLocY[ trnsIdx = -trnsBuf[ 1 ][ 0 ];
      }
View Full Code Here

TOP

Related Classes of de.sciss.meloncillo.session.SessionCollection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.