lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Noteheads using make-connected-path-stencil


From: Andrew Bernard
Subject: Noteheads using make-connected-path-stencil
Date: Mon, 21 Sep 2020 14:52:20 +1000

Using LSR 891 as a base pattern, how can you fill the path with a
colour, such as white?

Andrew

%======

\version "2.21.6"

tri =
#(make-connected-path-stencil
  '(;; path coordinates
     (-0.5 0)
     (0 -1)
     (0.5 0)
     (0 0)
     )
  0.1 ;; line thickness
  1  ;; X-axis scaling factor
  1  ;; Y-axis scaling factor
  #f  ;; automatically connect path to origin point? (0 0)
  #f)  % filled path?

{
  \override NoteHead.stencil = \tri
  \override NoteHead.stem-attachment = #'(1 . 0.7)
  e'4 f' g' a'
}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]