]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.43
authorfred <fred>
Sun, 24 Mar 2002 19:35:41 +0000 (19:35 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:35:41 +0000 (19:35 +0000)
Documentation/language.pod
lib/duration.cc
lib/include/duration.hh

index 4b747426426f798a305691be77db6b240ed6b6fd..181c4dea1fc48cd1603dbf270ba6d95d79c1aa67 100644 (file)
@@ -133,6 +133,95 @@ it will make things easier.
 =head1 CONCRETE PROPOSALS
 
 
+=head1 Decisions (Sat 1997-3-15, dommelpijpje no21)
+
+=over 4
+
+=item *
+
+\keyword, bo difference notes vs. notenames,
+
+=item *
+
+{} hierachical, nest.,
+
+=item *
+
+<> chords,
+
+=item *
+
+drop staff (NOT)?,
+
+=item *
+
+melody = \melodic{ } vs. \melodic melody = { }
+
+=item *
+
+lexer mode switch by types: \lyric{ }, \melodic{ }, etc.,
+
+=item *
+
+octaves: low 'C C c c' c'' high; 'c' == c === "c-klein", comment: a '
+' a . Which ' for which a? Now using a!'`.
+
+=over 4
+
+=item *
+
+\meter{ 2/4 },
+
+=item *
+
+\grouping{ 2*8 3*8 },
+
+=item *
+
+\skip{ 2: 2*8 3*32 },
+
+=item *
+
+abbrev: [c2 c2]\noplet{1/2} (wat bout [c2 c2]1/2\noplet?),
+
+=item *
+
+abbrev: c4=16 (heu, =?),
+
+=item *
+
+plet === midi-note: c4*2/3; c4*385/384,
+
+=back
+
+=item *
+
+drop \music,
+
+=item *
+
+\meter compulsory in Simple mudela,
+
+=item *
+
+++ concat
+
+=item *
+
+C<+> is  merge
+
+=item *
+
+       \transpose{ \from c \to g \melodic{ c d e } }
+       \transpose{ \from c \to g melody } %!?
+
+=item *
+
+       \extract{ \from 2:3*4 \to 5 oboe }
+
+=back
+
+
 
 =head1 THOUGHTS
 
index f737d660d16d406cdb693b09be11485c6b07b443..5504ed6e35431b70bbab14ace1844888a03ee413 100644 (file)
@@ -78,11 +78,6 @@ Plet::Plet( int iso_i, int type_i )
        type_i_ = type_i;
 }
 
-Plet::Plet( Plet const& plet_c_r )
-{
-       iso_i_ = plet_c_r.iso_i_;
-       type_i_ = plet_c_r.type_i_;
-}
 
 // statics Duration_convert
 bool Duration_convert::be_blonde_b_s = false;
index c642ce6edadf074f49c64d15d1e64c450a490f77..5c562859548f7c3abe8a84b11aa255982a180c4d 100644 (file)
@@ -27,7 +27,6 @@ struct Duration {
        void set_ticks( int ticks_i );
 
        static int division_1_i_s;
-//         int i_;     // balltype -> type!
        int type_i_;
        int dots_i_;
        Plet* plet_p_;
@@ -37,10 +36,8 @@ struct Duration {
 /// (plet)
 struct Plet {
        Plet( int replace_i, int type_i );
-       Plet( Plet const& plet_c_r );
-
-//         int i_;
-       int iso_i_;  // 2/3; 2 is not duration, maar of count!
+       
+    int iso_i_;  // 2/3; 2 is not duration, maar of count!
        int type_i_;
 };