示例#1
0
 Transformation NIFStream::getTrafo()
 {
     Transformation t;
     t.pos = getVector3();
     t.rotation = getMatrix3();
     t.scale = getFloat();
     return t;
 }
示例#2
0
 Transformation getTrafo()
 {
     Transformation t;
     t.pos = getVector3();
     t.rotation = getMatrix3();
     t.scale = getFloat();
     t.velocity = getVector3();
     return t;
 }