コード例 #1
0
ファイル: nifstream.cpp プロジェクト: Allofich/openmw
 Transformation NIFStream::getTrafo()
 {
     Transformation t;
     t.pos = getVector3();
     t.rotation = getMatrix3();
     t.scale = getFloat();
     return t;
 }
コード例 #2
0
ファイル: nif_file.hpp プロジェクト: hanikesn/openmw
 Transformation getTrafo()
 {
     Transformation t;
     t.pos = getVector3();
     t.rotation = getMatrix3();
     t.scale = getFloat();
     t.velocity = getVector3();
     return t;
 }