2 Star 0 Fork 0

mirrors_jsantell / web-audio-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 567 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jordan Santell 提交于 2015-01-26 04:08 . init
var EventEmitter = require("events").EventEmitter;
var util = require("util");
var Instrumentation = require("web-audio-instrumentation");
var ContextView = require("./lib/context");
var AudioNodes = require("./lib/model");
module.exports = WebAudioTools;
function WebAudioTools (win, el) {
this.el = el;
this.core = new Instrumentation();
this.nodes = new AudioNodes(this.core);
this.core.instrument(win);
this.context = new ContextView(this.core, this.nodes, el);
}
/**
* Inherits from `EventEmitter`.
*/
util.inherits(WebAudioTools, EventEmitter);
1
https://gitee.com/mirrors_jsantell/web-audio-tools.git
git@gitee.com:mirrors_jsantell/web-audio-tools.git
mirrors_jsantell
web-audio-tools
web-audio-tools
master

搜索帮助