Examples of replaceStart()


Examples of de.sciss.io.Span.replaceStart()

    consc.bcPost  = doc.createBlendContext( postMaxLen, 0, source.validAudio );
    span      = context.getTimeSpan();
    consc.blendPreSpan = consc.bcPre == null ? new Span() :
      span.replaceStop( span.start + consc.bcPre.getLen() );
    consc.blendPostSpan = consc.bcPost == null ? new Span() :
      span.replaceStart( span.stop - consc.bcPost.getLen() );

    progress    = 0.0f;
//    pt  = new ProcessingThread( this, doc.getFrame(), doc.bird, plugIn.getName(), new Object[] { context, null },
//                  Session.DOOR_ALL );
    pt  = new ProcessingThread( this, doc.getFrame(), plugIn.getName() );
View Full Code Here

Examples of de.sciss.timebased.MarkerStake.replaceStart()

      final List      collNew    = new ArrayList( numMarkers );
      MarkerStake      m;
      for( int i = 0; i < numMarkers; i++ ) {
        m = (MarkerStake) source.markers.get( i, true );
//        if( m.pos > prTotalSpan.start ) {  // don't mirror to prTotalSpan.stop ?
          collNew.add( m.replaceStart( prTotalSpan.stop - m.pos + prTotalSpan.start ));
//        }
      }
      source.markers.clear( this );
      source.markers.addAll( this, collNew );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.