-
-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #123 from tidalcycles/0.8-dev
0.8 release
- Loading branch information
Showing
27 changed files
with
1,193 additions
and
752 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{-| | ||
Module: Compositions | ||
Description: compose multiple pattern into more complex patterns | ||
Some functions work with multiple sets of patterns, interlace them or play them successively. | ||
-} | ||
module Sound.Tidal.Compositions (append, | ||
append', | ||
cat, | ||
randcat, | ||
seqP, | ||
slowcat, | ||
stack, | ||
superimpose, | ||
wedge, | ||
interlace, | ||
spin, | ||
weave) where | ||
|
||
import Sound.Tidal.Pattern | ||
import Sound.Tidal.Strategies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{-| | ||
Module: ConditionalTransformers | ||
Description: conditionally apply other transformations to pattern | ||
Conditional transformers are functions that apply other transformations under certain cirumstances. These can be based upon the number of cycles, probability or time-range within a pattern.-} | ||
module Sound.Tidal.ConditionalTransformers (every, | ||
foldEvery, | ||
sometimesBy, | ||
whenmod, | ||
within) where | ||
import Sound.Tidal.Pattern |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.