/home/akc/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 
 8 import note.SNote;
 9 
10 
11 /**
12  *
13  * @author akc
14  */
15 public class TwoFigureMinuetThing {
16 
17     /**
18      * @param args the command line arguments
19      */
20     public static void main(String[] args) {
21 //        SComposer sc = new SComposer();
22 //        sc.text();
23 //        sc.mms_35_JSB_M9();
24 //        sc.mms_35_JSB_M13();
25 //          RESULT
26 //        (C,1) \ (F,1/2) / (G,1/2) / (A,1/2) / (B,1/2) 
27 //        /(C,1/2) \ (B,1/2) \ (A,1/2) / (B,1/2) / (C,1) 
28 
29 //          SOLUTION
30         SNote note = new SNote();
31             note.text();
32             note.play();
33             note.rp(3); note.s2(); note.play();
34             note.lp(6); note.play();
35             note.rp(1); note.play();
36             note.rp(1); note.play();
37             note.rp(1); note.play();
38             note.lp(1); note.play();
39             note.lp(1); note.play();
40             note.rp(1); note.play();
41             note.rp(1); note.x2(); note.play();
42 //              RESULT
43 //          (C,1) / (F,1/2) \ (G,1/2) / (A,1/2) / (B,1/2)
44 //          /(C,1/2) \ (B,1/2) \ (A,1/2) / (B,1/2) / (C,1)
45     }
46     
47 }
48