├── .sensors.html.swp ├── README.md ├── bower_components ├── cbuffer │ ├── .bower.json │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── cbuffer.js │ ├── package.json │ ├── speed │ │ ├── core │ │ │ └── initialize.js │ │ ├── mutator │ │ │ ├── pop.js │ │ │ ├── push.js │ │ │ ├── reverse.js │ │ │ ├── shift.js │ │ │ └── unshift.js │ │ └── test.js │ └── test │ │ ├── accessor │ │ ├── indexOf-test.js │ │ ├── lastIndexOf-test.js │ │ └── sortedIndex-test.js │ │ ├── core │ │ └── cbuffer-test.js │ │ ├── env.js │ │ ├── index.html │ │ ├── iterator │ │ ├── every-test.js │ │ ├── forEach-test.js │ │ ├── math-test.js │ │ └── some-test.js │ │ ├── mutator │ │ ├── pop-test.js │ │ ├── push-test.js │ │ ├── reverse-test.js │ │ ├── rotateLeft-test.js │ │ ├── rotateRight-test.js │ │ ├── shift-test.js │ │ ├── sort-test.js │ │ └── unshift-test.js │ │ ├── template.js │ │ └── utility │ │ ├── slice-test.js │ │ └── utility-test.js ├── dat.gui │ ├── .bower.json │ ├── bower.json │ ├── dat.color.js │ ├── dat.color.min.js │ ├── dat.gui.js │ ├── dat.gui.min.js │ ├── license.txt │ └── readme.md └── mathbox │ ├── .bower.json │ ├── bower.json │ ├── build │ ├── mathbox-bundle.js │ ├── mathbox-bundle.min.js │ ├── mathbox-core.js │ ├── mathbox-core.min.js │ ├── mathbox.css │ └── shaders.js │ ├── gulpfile.js │ ├── karma.conf.js │ ├── release │ ├── mathbox-0.0.2.zip │ └── mathbox-0.0.3.zip │ └── vendor │ ├── fix.js │ ├── gulp-jsify │ ├── index.js │ └── node_modules │ │ ├── gulp-util │ │ ├── index.js │ │ ├── lib │ │ │ ├── File.js │ │ │ ├── PluginError.js │ │ │ ├── beep.js │ │ │ ├── buffer.js │ │ │ ├── colors.js │ │ │ ├── combine.js │ │ │ ├── date.js │ │ │ ├── env.js │ │ │ ├── isBuffer.js │ │ │ ├── isNull.js │ │ │ ├── isStream.js │ │ │ ├── linefeed.js │ │ │ ├── log.js │ │ │ ├── noop.js │ │ │ ├── replaceExtension.js │ │ │ └── template.js │ │ └── node_modules │ │ │ ├── chalk │ │ │ ├── index.js │ │ │ └── node_modules │ │ │ │ ├── ansi-styles │ │ │ │ └── ansi-styles.js │ │ │ │ ├── has-color │ │ │ │ └── has-color.js │ │ │ │ └── strip-ansi │ │ │ │ ├── cli.js │ │ │ │ └── index.js │ │ │ ├── dateformat │ │ │ └── lib │ │ │ │ └── dateformat.js │ │ │ ├── lodash._reinterpolate │ │ │ ├── LICENSE.txt │ │ │ └── index.js │ │ │ ├── lodash.template │ │ │ ├── LICENSE.txt │ │ │ ├── index.js │ │ │ └── node_modules │ │ │ │ ├── lodash._escapestringchar │ │ │ │ ├── LICENSE.txt │ │ │ │ └── index.js │ │ │ │ ├── lodash.defaults │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── index.js │ │ │ │ └── node_modules │ │ │ │ │ └── lodash._objecttypes │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── index.js │ │ │ │ ├── lodash.escape │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── index.js │ │ │ │ └── node_modules │ │ │ │ │ ├── lodash._escapehtmlchar │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── index.js │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── lodash._htmlescapes │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ └── index.js │ │ │ │ │ └── lodash._reunescapedhtml │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── index.js │ │ │ │ │ └── node_modules │ │ │ │ │ └── lodash._htmlescapes │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── index.js │ │ │ │ ├── lodash.keys │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── index.js │ │ │ │ └── node_modules │ │ │ │ │ ├── lodash._isnative │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── index.js │ │ │ │ │ ├── lodash._shimkeys │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── index.js │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── lodash._objecttypes │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ └── index.js │ │ │ │ │ └── lodash.isobject │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── index.js │ │ │ │ │ └── node_modules │ │ │ │ │ └── lodash._objecttypes │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── index.js │ │ │ │ ├── lodash.templatesettings │ │ │ │ ├── LICENSE.txt │ │ │ │ └── index.js │ │ │ │ └── lodash.values │ │ │ │ ├── LICENSE.txt │ │ │ │ └── index.js │ │ │ ├── minimist │ │ │ ├── example │ │ │ │ └── parse.js │ │ │ ├── index.js │ │ │ └── readme.markdown │ │ │ ├── multipipe │ │ │ ├── Makefile │ │ │ ├── index.js │ │ │ └── node_modules │ │ │ │ └── duplexer2 │ │ │ │ ├── example.js │ │ │ │ └── index.js │ │ │ ├── through2 │ │ │ ├── node_modules │ │ │ │ ├── readable-stream │ │ │ │ │ ├── duplex.js │ │ │ │ │ ├── float.patch │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── _stream_duplex.js │ │ │ │ │ │ ├── _stream_passthrough.js │ │ │ │ │ │ ├── _stream_readable.js │ │ │ │ │ │ ├── _stream_transform.js │ │ │ │ │ │ └── _stream_writable.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── string_decoder │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── build.js │ │ │ │ │ │ │ ├── files.js │ │ │ │ │ │ │ └── test-replacements.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── passthrough.js │ │ │ │ │ ├── readable.js │ │ │ │ │ ├── transform.js │ │ │ │ │ └── writable.js │ │ │ │ └── xtend │ │ │ │ │ ├── LICENCE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── has-keys.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── mutable.js │ │ │ │ │ ├── node_modules │ │ │ │ │ └── object-keys │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isArguments.js │ │ │ │ │ │ └── shim.js │ │ │ │ │ └── test.js │ │ │ └── through2.js │ │ │ └── vinyl │ │ │ ├── index.js │ │ │ ├── lib │ │ │ ├── cloneBuffer.js │ │ │ ├── inspectStream.js │ │ │ ├── isBuffer.js │ │ │ ├── isNull.js │ │ │ └── isStream.js │ │ │ └── node_modules │ │ │ └── clone-stats │ │ │ ├── index.js │ │ │ └── test.js │ │ └── through │ │ ├── LICENSE.APACHE2 │ │ ├── LICENSE.MIT │ │ ├── index.js │ │ └── readme.markdown │ ├── three.js │ └── three.min.js ├── complementary-filter.js ├── complementary-orientation.js ├── img └── box.png ├── index.html ├── object.html ├── old ├── device-orientation.js ├── event-emitter.js ├── event-recorder.js ├── mahony-orientation.js ├── orientation-filter.js ├── orientation.html ├── quaternion-integrator.js └── sensor-history.js ├── plot-object.js ├── plot-sensors.js ├── pose-predictor.js ├── sensor-sample.js └── util.js /.sensors.html.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/.sensors.html.swp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/README.md -------------------------------------------------------------------------------- /bower_components/cbuffer/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/.bower.json -------------------------------------------------------------------------------- /bower_components/cbuffer/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /bower_components/cbuffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/LICENSE -------------------------------------------------------------------------------- /bower_components/cbuffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/README.md -------------------------------------------------------------------------------- /bower_components/cbuffer/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/bower.json -------------------------------------------------------------------------------- /bower_components/cbuffer/cbuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/cbuffer.js -------------------------------------------------------------------------------- /bower_components/cbuffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/package.json -------------------------------------------------------------------------------- /bower_components/cbuffer/speed/core/initialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/speed/core/initialize.js -------------------------------------------------------------------------------- /bower_components/cbuffer/speed/mutator/pop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/speed/mutator/pop.js -------------------------------------------------------------------------------- /bower_components/cbuffer/speed/mutator/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/speed/mutator/push.js -------------------------------------------------------------------------------- /bower_components/cbuffer/speed/mutator/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/speed/mutator/reverse.js -------------------------------------------------------------------------------- /bower_components/cbuffer/speed/mutator/shift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/speed/mutator/shift.js -------------------------------------------------------------------------------- /bower_components/cbuffer/speed/mutator/unshift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/speed/mutator/unshift.js -------------------------------------------------------------------------------- /bower_components/cbuffer/speed/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/speed/test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/accessor/indexOf-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/accessor/indexOf-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/accessor/lastIndexOf-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/accessor/lastIndexOf-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/accessor/sortedIndex-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/accessor/sortedIndex-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/core/cbuffer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/core/cbuffer-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/env.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/index.html -------------------------------------------------------------------------------- /bower_components/cbuffer/test/iterator/every-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/iterator/every-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/iterator/forEach-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/iterator/forEach-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/iterator/math-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/iterator/math-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/iterator/some-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/iterator/some-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/mutator/pop-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/mutator/pop-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/mutator/push-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/mutator/push-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/mutator/reverse-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/mutator/reverse-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/mutator/rotateLeft-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/mutator/rotateLeft-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/mutator/rotateRight-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/mutator/rotateRight-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/mutator/shift-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/mutator/shift-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/mutator/sort-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/mutator/sort-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/mutator/unshift-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/mutator/unshift-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/template.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/utility/slice-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/utility/slice-test.js -------------------------------------------------------------------------------- /bower_components/cbuffer/test/utility/utility-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/cbuffer/test/utility/utility-test.js -------------------------------------------------------------------------------- /bower_components/dat.gui/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/dat.gui/.bower.json -------------------------------------------------------------------------------- /bower_components/dat.gui/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/dat.gui/bower.json -------------------------------------------------------------------------------- /bower_components/dat.gui/dat.color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/dat.gui/dat.color.js -------------------------------------------------------------------------------- /bower_components/dat.gui/dat.color.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/dat.gui/dat.color.min.js -------------------------------------------------------------------------------- /bower_components/dat.gui/dat.gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/dat.gui/dat.gui.js -------------------------------------------------------------------------------- /bower_components/dat.gui/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/dat.gui/dat.gui.min.js -------------------------------------------------------------------------------- /bower_components/dat.gui/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/dat.gui/license.txt -------------------------------------------------------------------------------- /bower_components/dat.gui/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/dat.gui/readme.md -------------------------------------------------------------------------------- /bower_components/mathbox/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/.bower.json -------------------------------------------------------------------------------- /bower_components/mathbox/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/bower.json -------------------------------------------------------------------------------- /bower_components/mathbox/build/mathbox-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/build/mathbox-bundle.js -------------------------------------------------------------------------------- /bower_components/mathbox/build/mathbox-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/build/mathbox-bundle.min.js -------------------------------------------------------------------------------- /bower_components/mathbox/build/mathbox-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/build/mathbox-core.js -------------------------------------------------------------------------------- /bower_components/mathbox/build/mathbox-core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/build/mathbox-core.min.js -------------------------------------------------------------------------------- /bower_components/mathbox/build/mathbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/build/mathbox.css -------------------------------------------------------------------------------- /bower_components/mathbox/build/shaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/build/shaders.js -------------------------------------------------------------------------------- /bower_components/mathbox/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/gulpfile.js -------------------------------------------------------------------------------- /bower_components/mathbox/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/karma.conf.js -------------------------------------------------------------------------------- /bower_components/mathbox/release/mathbox-0.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/release/mathbox-0.0.2.zip -------------------------------------------------------------------------------- /bower_components/mathbox/release/mathbox-0.0.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/release/mathbox-0.0.3.zip -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/fix.js: -------------------------------------------------------------------------------- 1 | require= 2 | -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/File.js: -------------------------------------------------------------------------------- 1 | module.exports = require('vinyl'); -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/PluginError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/PluginError.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/beep.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | process.stdout.write('\x07'); 3 | }; 4 | -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/buffer.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/colors.js: -------------------------------------------------------------------------------- 1 | module.exports = require('chalk'); -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/combine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/combine.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/date.js: -------------------------------------------------------------------------------- 1 | module.exports = require('dateformat'); -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/env.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/isBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/isBuffer.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/isStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/isStream.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/linefeed.js: -------------------------------------------------------------------------------- 1 | module.exports = '\n'; -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/log.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/noop.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/replaceExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/replaceExtension.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/lib/template.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/chalk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/chalk/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/chalk/node_modules/ansi-styles/ansi-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/chalk/node_modules/ansi-styles/ansi-styles.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/chalk/node_modules/has-color/has-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/chalk/node_modules/has-color/has-color.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/chalk/node_modules/strip-ansi/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/chalk/node_modules/strip-ansi/cli.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/chalk/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/chalk/node_modules/strip-ansi/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/dateformat/lib/dateformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/dateformat/lib/dateformat.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash._reinterpolate/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash._reinterpolate/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash._reinterpolate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash._reinterpolate/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash._escapestringchar/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash._escapestringchar/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash._escapestringchar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash._escapestringchar/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.defaults/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.defaults/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.defaults/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.defaults/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.defaults/node_modules/lodash._objecttypes/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.defaults/node_modules/lodash._objecttypes/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.defaults/node_modules/lodash._objecttypes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.defaults/node_modules/lodash._objecttypes/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._escapehtmlchar/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._escapehtmlchar/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._escapehtmlchar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._escapehtmlchar/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._escapehtmlchar/node_modules/lodash._htmlescapes/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._escapehtmlchar/node_modules/lodash._htmlescapes/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._escapehtmlchar/node_modules/lodash._htmlescapes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._escapehtmlchar/node_modules/lodash._htmlescapes/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._reunescapedhtml/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._reunescapedhtml/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._reunescapedhtml/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._reunescapedhtml/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._reunescapedhtml/node_modules/lodash._htmlescapes/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._reunescapedhtml/node_modules/lodash._htmlescapes/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._reunescapedhtml/node_modules/lodash._htmlescapes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.escape/node_modules/lodash._reunescapedhtml/node_modules/lodash._htmlescapes/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._isnative/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._isnative/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._isnative/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._isnative/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._shimkeys/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._shimkeys/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._shimkeys/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._shimkeys/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._shimkeys/node_modules/lodash._objecttypes/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._shimkeys/node_modules/lodash._objecttypes/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._shimkeys/node_modules/lodash._objecttypes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash._shimkeys/node_modules/lodash._objecttypes/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash.isobject/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash.isobject/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash.isobject/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash.isobject/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash.isobject/node_modules/lodash._objecttypes/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash.isobject/node_modules/lodash._objecttypes/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash.isobject/node_modules/lodash._objecttypes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.keys/node_modules/lodash.isobject/node_modules/lodash._objecttypes/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.templatesettings/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.templatesettings/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.templatesettings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.templatesettings/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.values/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.values/LICENSE.txt -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.values/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/lodash.template/node_modules/lodash.values/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/minimist/example/parse.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/minimist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/minimist/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/minimist/readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/minimist/readme.markdown -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/multipipe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/multipipe/Makefile -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/multipipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/multipipe/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/multipipe/node_modules/duplexer2/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/multipipe/node_modules/duplexer2/example.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/multipipe/node_modules/duplexer2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/multipipe/node_modules/duplexer2/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/float.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/float.patch -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_duplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_duplex.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_readable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_readable.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_transform.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/node_modules/string_decoder/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/node_modules/string_decoder/build/build.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/node_modules/string_decoder/build/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/node_modules/string_decoder/build/files.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/node_modules/string_decoder/build/test-replacements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/node_modules/string_decoder/build/test-replacements.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/node_modules/string_decoder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/node_modules/string_decoder/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/readable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/readable.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/LICENCE -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/Makefile -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/has-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/has-keys.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/mutable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/mutable.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/node_modules/object-keys/foreach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/node_modules/object-keys/foreach.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/node_modules/object-keys/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Object.keys || require('./shim'); 2 | 3 | -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/node_modules/object-keys/isArguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/node_modules/object-keys/isArguments.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/node_modules/object-keys/shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/node_modules/object-keys/shim.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/node_modules/xtend/test.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/through2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/through2/through2.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/lib/cloneBuffer.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/lib/inspectStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/lib/inspectStream.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/lib/isBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/lib/isBuffer.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/lib/isStream.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/node_modules/clone-stats/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/node_modules/clone-stats/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/node_modules/clone-stats/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/gulp-util/node_modules/vinyl/node_modules/clone-stats/test.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/through/LICENSE.APACHE2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/through/LICENSE.APACHE2 -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/through/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/through/LICENSE.MIT -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/through/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/through/index.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/gulp-jsify/node_modules/through/readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/gulp-jsify/node_modules/through/readme.markdown -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/three.js -------------------------------------------------------------------------------- /bower_components/mathbox/vendor/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/bower_components/mathbox/vendor/three.min.js -------------------------------------------------------------------------------- /complementary-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/complementary-filter.js -------------------------------------------------------------------------------- /complementary-orientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/complementary-orientation.js -------------------------------------------------------------------------------- /img/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/img/box.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/index.html -------------------------------------------------------------------------------- /object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/object.html -------------------------------------------------------------------------------- /old/device-orientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/old/device-orientation.js -------------------------------------------------------------------------------- /old/event-emitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/old/event-emitter.js -------------------------------------------------------------------------------- /old/event-recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/old/event-recorder.js -------------------------------------------------------------------------------- /old/mahony-orientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/old/mahony-orientation.js -------------------------------------------------------------------------------- /old/orientation-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/old/orientation-filter.js -------------------------------------------------------------------------------- /old/orientation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/old/orientation.html -------------------------------------------------------------------------------- /old/quaternion-integrator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/old/quaternion-integrator.js -------------------------------------------------------------------------------- /old/sensor-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/old/sensor-history.js -------------------------------------------------------------------------------- /plot-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/plot-object.js -------------------------------------------------------------------------------- /plot-sensors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/plot-sensors.js -------------------------------------------------------------------------------- /pose-predictor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/pose-predictor.js -------------------------------------------------------------------------------- /sensor-sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/sensor-sample.js -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borismus/sensor-fusion/HEAD/util.js --------------------------------------------------------------------------------