Skip to content

Commit

Permalink
import
Browse files Browse the repository at this point in the history
  • Loading branch information
j-bresson committed Dec 22, 2018
0 parents commit 95142e2
Show file tree
Hide file tree
Showing 5 changed files with 722 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
*.lisp~
*.*~
*.xfasl
*.64xfasl
*.ofasl
*.*ufasl
#*#

.DS_Store

# don't track auto-generated html's:
/**/reference/*.*
*.lisp#
*.zip
33 changes: 33 additions & 0 deletions Combine.lisp
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
;;
;;
;; Combine
;;
;; by Mikhail Malt © IRCAM 1996

(in-package :om)

(compile&load (om-relative-path '("sources") "FERNEYHOUGH"))


; ("sub-pack-name" subpacke-lists class-list function-list class-alias-list)

(om::fill-library '(("Basic" nil nil (ser-op rot90 serie-space) nil)
("Permut" nil nil (combinations messiaen prolifer saw rand-saw
circ-saw oscil-permutn rev-saw spiral kreus kreus-1
permut-dyn permut-dyn1 single-to-1 single-to-x
permut->to-1 permut->to-x) nil)
("Analyse" nil nil (l-analyse) nil)
("Conv" nil nil (mc->m m->mc octave-c3) nil)
("Tools" nil nil (geomt ratio ratio-freq g-subs gl-subs segment l-segment) nil)
))


(om::set-lib-release 1.0)

(om::add-lib-alias "OMCombine" "Combine")

(print "
;; Combine loader
;;
;; by Mikhail Malt © IRCAM 1996
")
Loading

0 comments on commit 95142e2

Please sign in to comment.