Brunex92 Posted April 29, 2016 Share Posted April 29, 2016 I've been studying Babylon and my teacher asked me to do this application, which I have to get the matrix values and display on canvas linking these points with a cylinder. But everytime I run the code, it says that there is a Compilation Error: matrix is undefined, even though it shows exactly what I need Running on an HTML page it says that the problem is at the 93 line matObjects.diffuseColor = new BABYLON.Color3(matrix[i][6], matrix[i][7], matrix[i][8]); What could be wrong?Playground:http://www.babylonjs-playground.com/#KNMZ0#15 Quote Link to comment Share on other sites More sharing options...
GameMonetize Posted April 29, 2016 Share Posted April 29, 2016 Hey..nice usage of the GridMaterial It is just an issue with your counter. i has to be < to matrix.length I cleaned your code a bit so that your teacher will be even more happy: http://www.babylonjs-playground.com/#KNMZ0#16 Wingnut 1 Quote Link to comment Share on other sites More sharing options...
Brunex92 Posted April 29, 2016 Author Share Posted April 29, 2016 5 minutes ago, Deltakosh said: Hey..nice usage of the GridMaterial It is just an issue with your counter. i has to be < to matrix.length I cleaned your code a bit so that your teacher will be even more happy: http://www.babylonjs-playground.com/#KNMZ0#16 Oh wow, so simple lol thanks :] Wingnut 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.