/home/jfernan6/NetBeansProjects/CSX/src/mmw/TwoFIgureMInuetThing.java
 1 /*
 2  * Ten note line created by joining two JSB minuet figures
 3  */
 4 package mmw;
 5 
 6 import note.SNote;
 7 
 8 /**
 9  *
10  * @author jfernan6
11  */
12 public class TwoFIgureMInuetThing {
13 
14     /**
15      * @param args the command line arguments
16      */
17    
18     // GOAL: (C,1) \ (F,1/2) / (G,1/2) / (A,1/2) / (B,1/2)  (C,1/2) \ (B,1/2) \ (A,1/2) / (B,1/2) / (C,1) 
19       
20     public static void main(String[] args) {
21             SNote note = new SNote();
22             note.text();
23             note.play();
24             note.rp(3); note.s2();
25             note.play();
26             note.rp();
27             note.play();
28             note.lp(6);
29             note.play();
30             note.rp();
31             note.play();
32             note.rp();
33             note.play();
34             note.lp();
35             note.play();
36             note.lp();
37             note.play();
38             note.rp();
39             note.play();
40             note.rp(); note.x2();
41             note.play();
42     }
43  }
44