intravenous

changeset 10:8fbdc6f84f64 tip

fixed after the change in vmath
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 31 May 2013 01:30:14 +0300
parents 90af225f469a
children
files src/ship.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line diff
     1.1 --- a/src/ship.cc	Sat Apr 28 17:10:29 2012 +0300
     1.2 +++ b/src/ship.cc	Fri May 31 01:30:14 2013 +0300
     1.3 @@ -81,7 +81,7 @@
     1.4  
     1.5  Matrix4x4 Ship::get_matrix() const
     1.6  {
     1.7 -	Matrix3x3 rmat = rot.get_rotation_matrix().transposed();
     1.8 +	Matrix3x3 rmat = rot.get_rotation_matrix();//.transposed();
     1.9  	Matrix4x4 tmat;
    1.10  	tmat.set_translation(pos);
    1.11