]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/output-svg.scm
Gets rid of bezier-sandwich stencil
[lilypond.git] / scm / output-svg.scm
index e3af710b1509a9debcec827ed48f2b4df8ef9028..eaff36294263541245257708998c036dca08fd9c 100644 (file)
 ;;; stencil outputters
 ;;;
 
-(define (bezier-sandwich lst thick)
-  (let* ((first (list-tail lst 4))
-        (second (list-head lst 4)))
-    (entity 'path ""
-           '(stroke-linejoin . "round")
-           '(stroke-linecap . "round")
-           '(stroke . "currentColor")
-           '(fill . "currentColor")
-           `(stroke-width . ,thick)
-           `(d . ,(string-append (svg-bezier first #f)
-                                 (svg-bezier second #t))))))
-
 (define (char font i)
   (dispatch
    `(fontify ,font ,(entity 'tspan (char->entity (integer->char i))))))