public bool Equals(ImageBrushTool other)
 {
     return Equals(Image, other.Image)
            && Mode == other.Mode
            && Viewport.Equals(other.Viewport)
            && ViewportUnits == other.ViewportUnits
            && Opacity.Equals(other.Opacity);
 }
Beispiel #2
0
 public bool Equals(ImageBrushTool other)
 {
     return(Equals(Image, other.Image) &&
            Mode == other.Mode &&
            Viewport.Equals(other.Viewport) &&
            ViewportUnits == other.ViewportUnits &&
            Opacity.Equals(other.Opacity));
 }