Skip to content

Commit

Permalink
Fixed erroneous ref to glMatrix
Browse files Browse the repository at this point in the history
  • Loading branch information
xeolabs committed Sep 22, 2016
1 parent ab9676d commit 2161f8b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions api/latest/scenejs.js
Original file line number Diff line number Diff line change
Expand Up @@ -18145,8 +18145,8 @@ SceneJS_Display.prototype._logPickList = function () {

var localRayOrigin = SceneJS_math_vec3();
var localRayDir = SceneJS_math_vec3();
var pickViewMatrix = mat4.create();
var pickProjMatrix = mat4.create();
var pickViewMatrix = SceneJS_math_mat4();
var pickProjMatrix = SceneJS_math_mat4();
mat4.frustum(pickProjMatrix, -1, 1, -1, 1, 0.1, 10000);

var a = SceneJS_math_vec3();
Expand Down
Loading

0 comments on commit 2161f8b

Please sign in to comment.