Changes

Jump to: navigation, search

Canvas3D JS Library

264 bytes added, 14:23, 13 May 2008
Bug List
* Linear Velocity
** <strike>Setting the Linear Velocity does not do anything.</strike>
changed lines in Cube.js from
54 var velVec = new Vector(linVel);
55 velVec.multiply(timeStep);
56 this.pos.add(velVec);
to this:
54 var velVec = new Vector();
55 velVec.setFromVector(this.linVel);
56 velVec.multiply(timeStep);
57 this.pos = this.pos.add(velVec);
== Ideas List ==
1
edit

Navigation menu