Removed dependency on old glMatrix

This commit is contained in:
Christoph Oberhofer
2015-06-07 11:08:09 +02:00
parent a042422515
commit 53857c30fd
4 changed files with 3977 additions and 2363 deletions
+1 -10
View File
@@ -44,21 +44,12 @@ module.exports = function(grunt) {
"typedefs" : { "typedefs" : {
"deps" : [], "deps" : [],
"exports" : "typedefs" "exports" : "typedefs"
},
"glMatrix" : {
"deps" : ["typedefs"],
"exports" : "glMatrix"
},
"glMatrixAddon" : {
"deps" : ["glMatrix"],
"exports" : "glMatrixAddon"
} }
}, },
"paths" : { "paths" : {
"typedefs" : "typedefs", "typedefs" : "typedefs",
"glMatrix" : "vendor/glMatrix", "gl-matrix": "../node_modules/gl-matrix/dist/gl-matrix"
"glMatrixAddon" : "glMatrixAddon"
} }
} }
} }
+3971 -2348
View File
File diff suppressed because it is too large Load Diff
+4 -4
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,5 +1,5 @@
/* jshint undef: true, unused: true, browser:true, devel: true */ /* jshint undef: true, unused: true, browser:true, devel: true */
/* global define, mat2, vec2 */ /* global define */
define("barcode_locator", ["image_wrapper", "cv_utils", "rasterizer", "tracer", "skeletonizer", "array_helper", "image_debug", "gl-matrix"], define("barcode_locator", ["image_wrapper", "cv_utils", "rasterizer", "tracer", "skeletonizer", "array_helper", "image_debug", "gl-matrix"],
function(ImageWrapper, CVUtils, Rasterizer, Tracer, skeletonizer, ArrayHelper, ImageDebug, glMatrix) { function(ImageWrapper, CVUtils, Rasterizer, Tracer, skeletonizer, ArrayHelper, ImageDebug, glMatrix) {