public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    input.SkipLastField();
                    break;

                case 10: {
                    if (origin_ == null)
                    {
                        origin_ = new global::Atlas.Augmented.Vector();
                    }
                    input.ReadMessage(origin_);
                    break;
                }

                case 18: {
                    if (orientation_ == null)
                    {
                        orientation_ = new global::Atlas.Augmented.Quaternion();
                    }
                    input.ReadMessage(orientation_);
                    break;
                }
                }
            }
        }
 public void MergeFrom(Transformation other)
 {
     if (other == null)
     {
         return;
     }
     if (other.origin_ != null)
     {
         if (origin_ == null)
         {
             origin_ = new global::Atlas.Augmented.Vector();
         }
         Origin.MergeFrom(other.Origin);
     }
     if (other.orientation_ != null)
     {
         if (orientation_ == null)
         {
             orientation_ = new global::Atlas.Augmented.Quaternion();
         }
         Orientation.MergeFrom(other.Orientation);
     }
 }