Package jpianotrain.staff

Examples of jpianotrain.staff.NoteName


    int nameIdx=rowWithoutEmpty/notesPerScaleTotal;
    Scale s=scaleBuffer.get(nameIdx);
    if (s==null) {
      //log.debug("nameIdx......: "+nameIdx);
      if (scaleName.isMajor()) {
        NoteName nn=Scale.MAJOR_SCALES_CLASSIC[nameIdx];
        s=new Scale(nn, scaleName);
      } else {
        NoteName nn=Scale.MINOR_SCALES_CLASSIC[nameIdx];
        s=new Scale(nn, scaleName);
      }
      scaleBuffer.put(nameIdx, s);
    }
    int noteIdx=rowWithoutEmpty%notesPerScaleTotal;
View Full Code Here

TOP

Related Classes of jpianotrain.staff.NoteName

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.