Changes

Jump to: navigation, search

Canvas3D JS Library

318 bytes removed, 20:15, 17 June 2008
Bug List
** <strike>Setting the Linear Velocity does not do anything.</strike>
* Cube
** <strike>setDims uses obsolete Vector function - setFromVector  changed lines in Cube.js from <br /><code>54 var velVec = new Vector(linVel);<br />55 velVec.multiply(timeStep);<br />56 this.pos.add(velVec);<br />to this:<br />54 var velVec = new Vector();<br />55 velVec.setFromVector(this.linVel);<br />56 velVec.multiply(timeStep);<br />57 this.pos = this.pos.add(velVec);<br /></codestrike>
* setLookAtPoint - May 14
** Objects at 0,0,0 are not displayed when setLookAtPoint is passed (0,0,0). However, if called with cam.setLookAtPoint(new Vector(0.0, 0.0, 0.00000001)) , it will work.

Navigation menu