-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ATK: FIX for requirement to include MathLib Quark for sc3-plugins
Contribution by @mtmccrea to resolve issue discussed: #124 #125 http://new-supercollider-mailing-lists-forums-use-these.2681727.n2.nabbl e.com/Fwd-sc-users-Re-SC3-plugins-missed-class-td7628763.html At the moment, it appears the long term solution will be to move all the language side elements of the ATK to a separate Quark. (The ATK team has been considering this option.) In the short term, this current solution removes the dependency on users installing MathLib when installing sc3-plugins.
- Loading branch information
Showing
5 changed files
with
68 additions
and
34 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,13 @@ | ||
+ Array { | ||
|
||
// set: FOA, HOA1, HOA2, etc. | ||
// type: \encoder, \decoder, \xformer | ||
// NOTE: set and type aren't currently enforced, but it's a | ||
// good idea to provide it for writing to file | ||
asAtkMatrix { arg set, type; | ||
var mtx; | ||
mtx = Matrix.with(this.asArray); | ||
^AtkMatrix.newFromMatrix(mtx, set, type); | ||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
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