Examples of drawWaveform()


Examples of de.sciss.eisenkraut.io.DecimatedSonaTrail.drawWaveform()

    final int  w    = getWidth();
//    Rectangle  cr;
//    int      y;
   
    info  = dt.getBestSubsample( new Span( viewSpan.start, viewSpan.stop + 1 ), w );
    dt.drawWaveform( info, this, g2 );

// XXX
//    if( nullLinie ) {
//      g2.setPaint( pntNull );
//      g2.setStroke( strkNull );
View Full Code Here

Examples of de.sciss.eisenkraut.io.DecimatedWaveTrail.drawWaveform()

    final int  w  = getWidth();
    Rectangle  cr;
    int      y;
   
    info = dt.getBestSubsample( new Span( viewSpan.start, viewSpan.stop + 1 ), w );
    dt.drawWaveform( info, this, g2 );

    if( nullLinie ) {
      g2.setPaint( pntNull );
      g2.setStroke( strkNull );
      for( int ch = 0; ch < fullChannels; ch++ ) {
View Full Code Here

Examples of de.sciss.eisenkraut.io.DecimatedWaveTrail.drawWaveform()

    final int  w  = getWidth();
    Rectangle  cr;
    int      y;
   
    info = dt.getBestSubsample( new Span( viewSpan.start, viewSpan.stop + 1 ), w );
    dt.drawWaveform( info, this, g2 );

    if( nullLinie ) {
      g2.setPaint( pntNull );
      g2.setStroke( strkNull );
      for( int ch = 0; ch < fullChannels; ch++ ) {
View Full Code Here

Examples of de.sciss.meloncillo.io.DecimatedWaveTrail.drawWaveform()

      final AudioTrail at = t.getAudioTrail();
      final DecimatedWaveTrail dt = t.getDecimatedWaveTrail();
      if( dt == null ) continue;
      info = dt.getBestSubsample( new Span( viewSpan.start, viewSpan.stop + 1 ), w );
//      fullChannels = at.getChannelNum(); // XXX dirty shit
      dt.drawWaveform( info, this, g2 );
 
      if( nullLinie ) {
        g2.setPaint( pntNull );
        g2.setStroke( strkNull );
        for( int ch = 0; ch < fullChannels; ch++ ) {
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.