예제 #1
0
 public Angles ReadCompressedAngles()
 {
     return(new Angles()
     {
         Pitch = Angles.Short2Angle(ReadShort()),
         Yaw = Angles.Short2Angle(ReadShort()),
         Roll = Angles.Short2Angle(ReadShort()),
     });
 }
예제 #2
0
 public float ReadCompressedAngle()
 {
     return(Angles.Short2Angle(ReadShort()));
 }