Exemplo n.º 1
0
 public bool Equals(TransformedGeometry other)
 {
     return
         (other != null &&
          SourceGeometry.Equals(other.SourceGeometry) &&
          TransformMatrix == other.TransformMatrix);
 }
Exemplo n.º 2
0
 /// <inheritdoc/>
 public override int GetHashCode()
 {
     return(SourceGeometry.GetHashCode());
 }