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
documentation/ | |
examples/ | |
preferences/ | |
solutions/ | |
matchMaker/ | |
settingsHandlers/ | |
transformer/ | |
... | |
demos/ |
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
fluid.defaults("colin.am", { | |
gradeNames: ["flock.synth", "autoInit"], | |
synthDef: { | |
id: "carrier", | |
ugen: "flock.ugen.sinOsc", | |
freq: 440, | |
mul: { | |
id: "mod", | |
ugen: "flock.ugen.sinOsc", | |
rate: "control", |
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
fluid.defaults("colin.sinSynth", { | |
gradeNames: ["flock.synth", "autoInit"], | |
synthDef: { | |
ugen: "flock.ugen.sinOsc", | |
freq: 440, | |
mul: 0.25 | |
} | |
}); |
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
fluid.defaults("colin.sinSynth", { | |
gradeNames: ["flock.synth", "autoInit"], | |
synthDef: { | |
ugen: "flock.ugen.sinOsc", | |
freq: 440, | |
mul: 0.25 | |
} | |
}); |
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
fluid.defaults("catOptions.auxSchema", { | |
gradeNames: ["fluid.uiOptions.auxSchema", "autoInit"], | |
auxiliarySchema: { | |
"namespace": "catOptions", | |
"templatePrefix": "../pages/catOptionsPanel/html/", | |
"catSize": { | |
"type": "catOptions.size", | |
"enactor": { | |
type: "catOptions.moreFoodEnactor" | |
}, |
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
prefsEditors/ | |
src/ | |
discoveryTool/ | |
pcp/ | |
pmt/ | |
shared/ | |
enactors/ | |
adjustors/ | |
lib/ |
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
fluid.defaults("colin.leapGrains", { | |
gradeNames: ["fluid.viewComponent", "autoInit"], | |
members: { | |
activeTips: {}, | |
synths: [] | |
}, | |
components: { | |
leap: { |
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
src/ | |
framework/ | |
preferences/ | |
js/ | |
<everything in here: https://github.com/fluid-project/infusion/tree/master/src/components/uiOptions/js> | |
components/ | |
ui-options/ | |
<tiny ui options stub here> | |
text-field-slider/ |
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
1. Maintain a clear separation between the content and presentation layers of an application | |
a. CSS must be separate from HTML markup | |
b. CSS and HTML should be independent of the application's server-side and client-side code | |
2. Technical practices | |
a. Comprehensive support for ARIA in all JavaScript-enabled user interfaces | |
b. Validation of CSS, HTML, and code using appropriate W3C or third-party validators | |
c. Comprehensive support for WCAG 2.0 AA or higher through all user interfaces | |
d. All strings must be parameterized as properties files, JSON, or other parseable format for localization |
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 SuperCollider code. | |
( | |
SynthDef("fm1", { | |
arg bus = 0, freq = 440, carPartial = 1, modPartial = 1, index = 3, mul = 0.05; | |
// index values usually are between 0 and 24 | |
// carPartial :: modPartial => car/mod ratio |
OlderNewer