UNPKG

gl-matrix-invert

Version:

Inverts a matrix in gl-matrix format of any dimension

13 lines (7 loc) 181 B
'use strict' var tape = require('tape') var invert = require('../invert') tape('gl-matrix-invert', function(t) { t.same(invert([], [1, 0, 1, 1]), [1, 0, -1, 1]) t.end() })