Example #1
0
        public void ReadMsg(BitStream stream)
        {
            Relative = stream.ReadBool();

            Angle    = new double[3];
            Angle[0] = BitAngle.Read(stream, ANGLE_BITS);
            Angle[1] = BitAngle.Read(stream, ANGLE_BITS);
            Angle[2] = BitAngle.Read(stream, ANGLE_BITS);
        }
 public void ReadMsg(BitStream stream)
 {
     X = BitAngle.Read(stream, 16);
     Y = BitAngle.Read(stream, 16);
     Z = BitAngle.Read(stream, 16);
 }