Esempio n. 1
0
 public void MergeFrom(DataPoint other)
 {
     if (other == null)
     {
         return;
     }
     if (other.Ns.Length != 0)
     {
         Ns = other.Ns;
     }
     if (other.Name.Length != 0)
     {
         Name = other.Name;
     }
     if (other.Kind != 0)
     {
         Kind = other.Kind;
     }
     if (other.Value != 0D)
     {
         Value = other.Value;
     }
     if (other.count_ != null)
     {
         if (count_ == null)
         {
             count_ = new global::Google.Protobuf.WellKnownTypes.Int32Value();
         }
         Count.MergeFrom(other.Count);
     }
     if (other.min_ != null)
     {
         if (min_ == null)
         {
             min_ = new global::Google.Protobuf.WellKnownTypes.DoubleValue();
         }
         Min.MergeFrom(other.Min);
     }
     if (other.max_ != null)
     {
         if (max_ == null)
         {
             max_ = new global::Google.Protobuf.WellKnownTypes.DoubleValue();
         }
         Max.MergeFrom(other.Max);
     }
     if (other.stdDev_ != null)
     {
         if (stdDev_ == null)
         {
             stdDev_ = new global::Google.Protobuf.WellKnownTypes.DoubleValue();
         }
         StdDev.MergeFrom(other.StdDev);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }
Esempio n. 2
0
 public void MergeFrom(Box other)
 {
     if (other == null)
     {
         return;
     }
     if (other.min_ != null)
     {
         if (min_ == null)
         {
             min_ = new global::Protometry.Vector3.Vector3();
         }
         Min.MergeFrom(other.Min);
     }
     if (other.max_ != null)
     {
         if (max_ == null)
         {
             max_ = new global::Protometry.Vector3.Vector3();
         }
         Max.MergeFrom(other.Max);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }