# HG changeset patch # User John Tsiombikas # Date 1369953014 -10800 # Node ID 8fbdc6f84f648b5e77e5079f5b2232b806eb8add # Parent 90af225f469a717318ef55677942e62357a65269 fixed after the change in vmath diff -r 90af225f469a -r 8fbdc6f84f64 src/ship.cc --- a/src/ship.cc Sat Apr 28 17:10:29 2012 +0300 +++ b/src/ship.cc Fri May 31 01:30:14 2013 +0300 @@ -81,7 +81,7 @@ Matrix4x4 Ship::get_matrix() const { - Matrix3x3 rmat = rot.get_rotation_matrix().transposed(); + Matrix3x3 rmat = rot.get_rotation_matrix();//.transposed(); Matrix4x4 tmat; tmat.set_translation(pos);