Skip to content

Commit

Permalink
Update builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jpweeks committed Oct 4, 2017
1 parent bdec71f commit e66a538
Show file tree
Hide file tree
Showing 3 changed files with 416 additions and 49 deletions.
56 changes: 8 additions & 48 deletions dist/index.js
@@ -1,12 +1,10 @@
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
'use strict';
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('gl-mat4/identity')) :
typeof define === 'function' && define.amd ? define(['exports', 'gl-mat4/identity'], factory) :
(factory((global.REGL = {}),global.identity));
}(this, (function (exports,identity) { 'use strict';

Object.defineProperty(exports, '__esModule', { value: true });

function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }

var identity = _interopDefault(require('gl-mat4/identity'));
var glslify = _interopDefault(require('glslify'));
identity = identity && identity.hasOwnProperty('default') ? identity['default'] : identity;

function ctor(Ctor) {
return function () {
Expand Down Expand Up @@ -415,44 +413,6 @@ inherit(null, LineBuilder, {
exports.LineBuilder = LineBuilder;
exports.line = line;

},{"gl-mat4/identity":2,"glslify":3}],2:[function(require,module,exports){
module.exports = identity;

/**
* Set a mat4 to the identity matrix
*
* @param {mat4} out the receiving matrix
* @returns {mat4} out
*/
function identity(out) {
out[0] = 1;
out[1] = 0;
out[2] = 0;
out[3] = 0;
out[4] = 0;
out[5] = 1;
out[6] = 0;
out[7] = 0;
out[8] = 0;
out[9] = 0;
out[10] = 1;
out[11] = 0;
out[12] = 0;
out[13] = 0;
out[14] = 0;
out[15] = 1;
return out;
};
},{}],3:[function(require,module,exports){
module.exports = function(strings) {
if (typeof strings === 'string') strings = [strings]
var exprs = [].slice.call(arguments,1)
var parts = []
for (var i = 0; i < strings.length-1; i++) {
parts.push(strings[i], exprs[i] || '')
}
parts.push(strings[i])
return parts.join('')
}
Object.defineProperty(exports, '__esModule', { value: true });

},{}]},{},[1]);
})));
2 changes: 1 addition & 1 deletion dist/index.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e66a538

Please sign in to comment.