v3.0.0
Notable changes
-
Cherry-picking gl-matrix is now possible #339 #343 (e.g.
import * as vec2 from 'gl-matrix/vec2';
) -
Webpack has been replaced with rollup #345
-
When simply including
dist/gl-matrix.js
in your website, the single top level object is nowglMatrix
instead of polluting the global namespace withvec2
,vec3
,mat4
, etc.- A quick fix to get the old behavior back is
Object.assign(window, glMatrix)
- A quick fix to get the old behavior back is
-
vec4.cross
has been implemented -
vec2/3/4.zero
has been implemented