/home/ecuevas/NetBeansProjects/CS1/src/mmw/TwoFigureMinuetThing.java
 1 /*
 2  * Ten note line created by joining two JSB minuet figures
 3  */
 4 package mmw;
 5 
 6 //import composer.SComposer;
 7 import note.SNote;
 8 
 9 /**
10  *
11  * @author ecuevas
12  */
13 public class TwoFigureMinuetThing {
14 
15     /**
16      * @param args the command line arguments
17      */
18     public static void main(String[] args) {
19         SNote sc = new SNote(); 
20         sc.beginScore();
21         sc.text(); sc.play();
22         sc.rp(3); sc.s2(); sc.play();
23         sc.rp(8); sc.play();
24         sc.rp(1); sc.play();
25         sc.rp(1); sc.play();
26         System.out.println();
27         sc.rp(1); sc.play();
28         sc.lp(1); sc.play();
29         sc.lp(1); sc.play();
30         sc.rp(1); sc.play();
31         sc.rp(1); sc.x2(); sc.play();
32         
33 
34         
35         
36         
37     
38         
39 
40          
41         
42         
43 //        SComposer sc = new SComposer();
44 //        sc.text();
45 //        sc.mms_35_JSB_M9();
46 //        sc.mms_35_JSB_M13();
47         
48     }
49     
50 }
51