Closed ntrf closed 8 years ago
Method up reports wrong data. There is a typo in the source code - wrong matrix component returned:
up
public inline function up() { return new Vector( elements[4], elements[5], elements[10] ); } //up
Z coordinate sould be elements[6] instead of elements[10].
elements[6]
elements[10]
Well spotted, the new maths classes in embers have unit tests to validate silly things like this. Thanks!
Method
up
reports wrong data. There is a typo in the source code - wrong matrix component returned:Z coordinate sould be
elements[6]
instead ofelements[10]
.