Exemplo n.º 1
0
 public override bool Equals(IPipeMemberType other)
 {
     if (GetType() != other.GetType())
     {
         return(false);
     }
     return(Equals((Arc)other));
 }
Exemplo n.º 2
0
 public bool Equals(IPipeMemberType other)
 {
     if (GetType() != other.GetType())
     {
         return(false);
     }
     return(Equals((Plane)other));
 }
Exemplo n.º 3
0
 public override bool Equals(IPipeMemberType other)
 {
     if (!GetType().IsAssignableFrom(other.GetType()))
     {
         return(false);
     }
     return(Equals((PolyCurve)other));
 }
Exemplo n.º 4
0
 public bool Equals(IPipeMemberType other)
 {
     if (!GetType().IsAssignableFrom(other.GetType()))
     {
         return(false);
     }
     return(Equals((Vec)other));
 }
Exemplo n.º 5
0
 public bool Equals(IPipeMemberType other)
 {
     if (other.GetType() != GetType())
     {
         return(false);
     }
     return(Equals((PipeString)other));
 }
Exemplo n.º 6
0
 public bool Equals(IPipeMemberType other)
 {
     if (GetType() != other.GetType()) { return false; }
     return Equals((Mesh)other);
 }