Esempio n. 1
0
 public PaintShopDestination InheritExtendedPropertiesFrom(PaintShopDestination baseDestination)
 {
     RedAdjustment   = baseDestination.RedAdjustment;
     GreenAdjustment = baseDestination.GreenAdjustment;
     BlueAdjustment  = baseDestination.BlueAdjustment;
     AlphaAdjustment = baseDestination.AlphaAdjustment;
     RedFrom         = baseDestination.RedFrom;
     GreenFrom       = baseDestination.GreenFrom;
     BlueFrom        = baseDestination.BlueFrom;
     AlphaFrom       = baseDestination.AlphaFrom;
     return(this);
 }
Esempio n. 2
0
 public bool Equals(ValueAdjustment other)
 {
     return(Add.Equals(other.Add) && Multiply.Equals(other.Multiply));
 }