From: fred Date: Sun, 24 Mar 2002 20:01:20 +0000 (+0000) Subject: lilypond-0.1.27 X-Git-Tag: release/1.5.59~3672 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=bd17032ac987a972a3317621f092733a758f7a56;p=lilypond.git lilypond-0.1.27 --- diff --git a/Documentation/lilypond.pod b/Documentation/lilypond.pod index 2d85939d0f..20f75f4b82 100644 --- a/Documentation/lilypond.pod +++ b/Documentation/lilypond.pod @@ -32,6 +32,10 @@ Turn debugging info on. GNU LilyPond reads the file F<.dstreamrc>, which lists what functions and classes may produce copious debugging output. +=item B<-t,--test>, + +Switch on any experimental features. Not for general public use. + =item B<-w,--warranty>, Show the warranty with which GNU LilyPond comes. (It comes with Binternote_f (); + Real fdx = dx; + String ps = "\\embeddedps{\n"; + // ugh, how bout " /draw_slur { ... } def " + ps += String_convert::int_str (fdx) + " " + + String_convert::int_str (fdy) + " " + + String_convert::int_str (dir) + + " drawslur}"; + + String mf = "\\embeddedmf{\n"; + mf += "input feta-sleur;\n"; + mf += "draw_slur((0,0),"; + mf += "(" + String_convert::int_str (fdx) + "," + + String_convert::int_str (fdy) + "),"; + mf += String_convert::int_str (dir) + ");\n"; + mf += "end.\n"; + ps += "}\n"; + + s.tex_ = ps + mf; + return s; + } + Direction y_sign = (Direction) sign (dy); bool large = abs (dy) > 8; @@ -175,10 +209,6 @@ Lookup::slur (int dy , Real &dx, Direction dir) const WARN<<_("slur to steep: ") << dy << _(" shrinking (ugh)\n"); } - Atom s; - s.dim_[X_AXIS] = Interval (0, dx); - s.dim_[Y_AXIS] = Interval (min (0, dy), max (0, dy)); - String f = String ("\\slurchar") + String (direction_char (y_sign)); int idx=-1; @@ -205,7 +235,6 @@ Lookup::slur (int dy , Real &dx, Direction dir) const f+=String ("{") + String (idx) + "}"; s.tex_ = f; - s.translate_axis (dx/2, X_AXIS); return s; }