Karol,

On Sat, Oct 19, 2013 at 6:22 PM, Karol Majewski <karo...@wp.pl> wrote:

> Thank you, David, it works indeed! I know that this is not exactly what I
> asked for but it is a good starting point.
>
>
>
> Now the question: is it possible for LilyPond to show control_point_values
> of ties?
>  Let's say I have something like:
>
>
>
> =====
>
> \version "2.17.28"
>
> {
> c'1~ c'1
> }
>
>
>
> =====
>
>
>
> and want LilyPond to show me all control points of that tie.
>
>
>
> Is this viable?
>

Sure.  You'll notice that the function I sent works with the control points
of each tie in the column,  Displaying them is straightforward:

{

\override Tie.after-line-breaking =

#(lambda (grob)

  (display (ly:grob-property grob 'control-points))

  (newline))

  c'1~ c'1

}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to