Jump to content

Opusmodus 1.2.20538


Recommended Posts

NEW:

MODUS is working with omn-form lists now.

 

(modus '((q c6 cs4 e a4 e3 d6 f4) (q b4 gs3 e bb4 eb4 g5 fs6)))

=> ((0 1 9 4 2 5) (11 8 10 3 7 6))

 

 

MOTIF-MAP function name has change to PATTERN-MAP with additional functionality.

 

(setf omn '((s c4 d4 e4 f4 g4 a4 b4 c5)

            (5q c4 d4 e4 f4 g4 g4 f4 e4 d4 c4)))

 

(pattern-map 

  '(((c4 d4 e4) (cs4 ds4 f4)) 

    ((f4 g4) (eb4 fs4))) omn

  :type :pitch)

=> ((s cs4 ds4 f4 eb4 fs4 a4 b4 c5)

    (5q cs4 ds4 f4 eb4 fs4 g4 f4 e4 d4 c4))

 

(pattern-map 

  '(((c4 d4 e4) (cs4 ds4 f4)) 

    ((f4 g4) (eb4 fs4))) omn

  :type :pitch :loop t)

=> ((s cs4 ds4 f4 f4 g4 a4 b4 c5)

    (5q c4 d4 e4 eb4 fs4 g4 f4 e4 d4 c4))

 

 

(setf mat '((q c6 cs4 a4 e3 d6 f4) (q b4 gs3 bb4 eb4 g5 fs6)))

 

(modus mat)

=> ((0 1 9 4 2 5) (11 8 10 3 7 6))

 

(pattern-map 

 '(((0 1 9 4 2 5) (0 4 2 1 9 5))

   ((11 8 10 3 7 6) (10 8 11 3 7 6)))

 mat :type :pitch :pcs t)

=> ((q c6 e4 d4 cs3 a6 f4)

    (q bb4 gs3 b4 eb4 g5 fs6))

 

(pattern-map

 '(((0 1 9) (10 8 11))

   ((11 8 10) (0 1 9)))

 mat :type :pitch :pcs t :loop t)

=> ((q bb6 gs4 b4 e3 d6 f4)

    (q c4 cs3 a4 eb4 g5 fs6))

 

Link to comment
Share on other sites

×
×
  • Create New...

Important Information

Terms of Use Privacy Policy