gitextract_qy9p2uoe/ ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── build/ │ └── resonance-audio.js ├── examples/ │ ├── benchmark.html │ ├── birds.html │ ├── hello-world.html │ ├── index.html │ ├── resources/ │ │ ├── examples.css │ │ ├── js/ │ │ │ ├── benchmark.js │ │ │ ├── birds.js │ │ │ ├── canvas-control.js │ │ │ ├── hello-world.js │ │ │ ├── room-models.js │ │ │ ├── treasure-hunt.js │ │ │ └── vs-pannernode.js │ │ └── three.js │ ├── room-models.html │ ├── treasure-hunt.html │ └── vs-pannernode.html ├── karma.conf.js ├── package.json ├── src/ │ ├── attenuation.js │ ├── directivity.js │ ├── early-reflections.js │ ├── encoder.js │ ├── late-reflections.js │ ├── listener.js │ ├── main.js │ ├── resonance-audio.js │ ├── room.js │ ├── source.js │ ├── tables.js │ ├── utils.js │ └── version.js ├── test/ │ ├── test-attenuation.js │ ├── test-directivity.js │ ├── test-early-reflections.js │ ├── test-encoder.js │ ├── test-late-reflections.js │ ├── test-listener.js │ ├── test-resonance-audio.js │ ├── test-room.js │ ├── test-source.js │ └── test-tables.js ├── webpack.config.all.js └── webpack.config.js