X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fgenerating-random-notes.ly;fp=input%2Flsr%2Fgenerating-random-notes.ly;h=0000000000000000000000000000000000000000;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=b71c9b1185532ca08c5e32fad1cb1c1314be3099;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/input/lsr/generating-random-notes.ly b/input/lsr/generating-random-notes.ly deleted file mode 100644 index b71c9b1185..0000000000 --- a/input/lsr/generating-random-notes.ly +++ /dev/null @@ -1,46 +0,0 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it -%% This file is in the public domain. -\version "2.12.3" - -\header { - lsrtags = "pitches" - - texidoces = " -Este fragmento de código basado en Scheme genera -24 notas aleatorias (o tantas como se necesiten), basándose en la -hora actual (o en cualquier número pseudo-aleatorio que se -especifique en su lugar, para obtener las mismas notas aleatorias -cada vez): es decir, para obtener distintos patrones de notas, -sólo tiene que modificar este número. - -" - doctitlees = "Generación de notas aleatorias" - - texidoc = " -This Scheme-based snippet generates 24 random notes (or as many as -required), based on the current time (or any randomish number specified -instead, in order to obtain the same random notes each time): i.e., to -get different random note patterns, just change this number. - -" - doctitle = "Generating random notes" -} % begin verbatim - -\score { - { - #(let ((random-state (seed->random-state (current-time)))) - (ly:export - (make-sequential-music - (map (lambda (x) - (let ((idx (random 12 random-state))) - (make-event-chord - (list - (make-music 'NoteEvent - 'duration (ly:make-duration 2 0 1 1) - 'pitch (ly:make-pitch - (quotient idx 7) - (remainder idx 7) - 0)))))) - (make-list 24))))) - } -}